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

Unified Diff: tools/test.dart

Issue 10191033: test renaming overhaul: step 4 client tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | « tests/standalone/src/io/StatusFileParserTest.dart ('k') | utils/compiler/buildbot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 0c473c7f24d10bcd9b11e107e265d67f8a157958..8d5ca761298e1386cac462012fbd59069c5f8c30 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -29,6 +29,15 @@
#import("testing/dart/test_options.dart");
#import("testing/dart/test_suite.dart");
+#import("../client/tests/dartc/test_config.dart");
+#import("../compiler/tests/dartc/test_config.dart");
+#import("../frog/tests/await/test_config.dart");
+#import("../frog/tests/frog/test_config.dart");
+#import("../frog/tests/leg/test_config.dart");
+#import("../frog/tests/leg_only/test_config.dart");
+#import("../frog/tests/native/test_config.dart");
+#import("../runtime/tests/vm/test_config.dart");
+#import("../samples/tests/samples/test_config.dart");
#import("../tests/co19/test_config.dart");
#import("../tests/corelib/test_config.dart");
#import("../tests/isolate/test_config.dart");
@@ -36,16 +45,6 @@
#import("../tests/lib/test_config.dart");
#import("../tests/standalone/test_config.dart");
#import("../tests/utils/test_config.dart");
-#import("../runtime/tests/vm/test_config.dart");
-#import("../samples/tests/samples/test_config.dart");
-#import("../client/tests/dartc/test_config.dart");
-#import("../compiler/tests/dartc/test_config.dart");
-#import("../client/tests/client/test_config.dart");
-#import("../frog/tests/frog/test_config.dart");
-#import("../frog/tests/leg/test_config.dart");
-#import("../frog/tests/leg_only/test_config.dart");
-#import("../frog/tests/native/test_config.dart");
-#import("../frog/tests/await/test_config.dart");
/**
* The directories that contain test suites which follow the conventions
@@ -55,6 +54,10 @@
* moved to here, if possible.
*/
final TEST_SUITE_DIRECTORIES = const [
+ 'tests/benchmark_smoke',
+ 'tests/dom',
+ 'tests/html',
+ 'tests/json',
'utils/tests/css',
'utils/tests/peg',
'utils/tests/pub',
@@ -131,8 +134,6 @@ main() {
queue.addTestSuite(new JUnitDartcTestSuite(conf));
} else if (key == 'await') {
queue.addTestSuite(new AwaitTestSuite(conf));
- } else if (key == 'client') {
- queue.addTestSuite(new ClientTestSuite(conf));
}
}
« no previous file with comments | « tests/standalone/src/io/StatusFileParserTest.dart ('k') | utils/compiler/buildbot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698