Index: tools/test.dart |
diff --git a/tools/test.dart b/tools/test.dart |
index 998d0f7bea99dcc75f3713116b2433856a099577..f38c843873ac0313f33963889c3b00f290b1e7a8 100755 |
--- a/tools/test.dart |
+++ b/tools/test.dart |
@@ -45,9 +45,6 @@ |
#import("../frog/tests/leg_only/test_config.dart"); |
#import("../frog/tests/native/test_config.dart"); |
#import("../frog/tests/await/test_config.dart"); |
-#import("../utils/tests/css/test_config.dart"); |
-#import("../utils/tests/import_mapper/test_config.dart"); |
-#import("../utils/tests/peg/test_config.dart"); |
/** |
* The directories that contain test suites which follow the conventions |
@@ -56,6 +53,9 @@ |
* basically add the directory here and you're done.) |
*/ |
final TEST_SUITE_DIRECTORIES = const [ |
+ 'utils/tests/css', |
+ 'utils/tests/import_mapper', |
+ 'utils/tests/peg', |
Emily Fortuna
2012/04/02 20:44:15
I'd cc someone in AAR on this CL just so they're a
|
'utils/tests/pub' |
]; |
@@ -139,15 +139,6 @@ main() { |
if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) { |
queue.addTestSuite(new JUnitDartcTestSuite(conf)); |
} |
- if (selectors.containsKey('css')) { |
- queue.addTestSuite(new CssTestSuite(conf)); |
- } |
- if (selectors.containsKey('import_mapper')) { |
- queue.addTestSuite(new ImportMapperTestSuite(conf)); |
- } |
- if (selectors.containsKey('peg')) { |
- queue.addTestSuite(new PegTestSuite(conf)); |
- } |
if (selectors.containsKey('await')) { |
queue.addTestSuite(new AwaitTestSuite(conf)); |
} |