Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: dart/tools/test-runtime.dart

Issue 9295043: Create a URI class in utils/ (based on client/util/). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments and *add* the new test suite Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/tools/test-compiler.dart ('k') | dart/tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/test-runtime.dart
diff --git a/dart/tools/test-runtime.dart b/dart/tools/test-runtime.dart
index a1cb43b0c4dd99e9dd989171b6ccdab7794bb7e9..98b0c23d82813d766d43f3dc4c1b7483a82f574a 100755
--- a/dart/tools/test-runtime.dart
+++ b/dart/tools/test-runtime.dart
@@ -1,5 +1,5 @@
#!/usr/bin/env dart
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -19,6 +19,7 @@
#import("../tests/language/test_config.dart");
#import("../tests/standalone/test_config.dart");
#import("../tests/stub-generator/test_config.dart");
+#import("../tests/utils/test_config.dart");
#import("../runtime/tests/vm/test_config.dart");
main() {
@@ -62,6 +63,9 @@ main() {
if (selectors.containsKey('stub-generator')) {
queue.addTestSuite(new StubGeneratorTestSuite(conf));
}
+ if (selectors.containsKey('utils')) {
+ queue.addTestSuite(new UtilsTestSuite(conf));
+ }
if (conf['component'] == 'vm' && selectors.containsKey('vm')) {
queue.addTestSuite(new VMTestSuite(conf));
}
« no previous file with comments | « dart/tools/test-compiler.dart ('k') | dart/tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698