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

Unified Diff: tools/test.dart

Issue 10250002: test rename overhaul: step 5 - frog and leg 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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 8d5ca761298e1386cac462012fbd59069c5f8c30..4289380986d5251726997d8c7f62e44902924fcf 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -32,10 +32,6 @@
#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");
@@ -54,6 +50,10 @@
* moved to here, if possible.
*/
final TEST_SUITE_DIRECTORIES = const [
+ 'frog/tests/frog',
+ 'frog/tests/frog_native',
+ 'frog/tests/leg',
+ 'frog/tests/leg_only',
'tests/benchmark_smoke',
'tests/dom',
'tests/html',
@@ -120,14 +120,6 @@ main() {
} else if (conf['runtime'] == 'vm' && key == 'vm') {
queue.addTestSuite(new VMTestSuite(conf));
queue.addTestSuite(new VMDartTestSuite(conf));
- } else if (key == 'frog') {
- queue.addTestSuite(new FrogTestSuite(conf));
- } else if (key == 'leg') {
- queue.addTestSuite(new LegTestSuite(conf));
- } else if (key == 'leg_only') {
- queue.addTestSuite(new LegOnlyTestSuite(conf));
- } else if (key == 'frog_native') {
- queue.addTestSuite(new FrogNativeTestSuite(conf));
} else if (conf['compiler'] == 'dartc' && key == 'dartc') {
queue.addTestSuite(new ClientDartcTestSuite(conf));
} else if (conf['compiler'] == 'dartc' && key == 'dartc') {

Powered by Google App Engine
This is Rietveld 408576698