Index: tools/test.dart |
=================================================================== |
--- tools/test.dart (revision 6209) |
+++ tools/test.dart (working copy) |
@@ -45,6 +45,9 @@ |
#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 |
@@ -53,9 +56,6 @@ |
* basically add the directory here and you're done.) |
*/ |
final TEST_SUITE_DIRECTORIES = const [ |
- 'utils/tests/css', |
- 'utils/tests/import_mapper', |
- 'utils/tests/peg', |
'utils/tests/pub' |
]; |
@@ -139,6 +139,15 @@ |
if (conf['compiler'] == '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)); |
} |