Index: tools/test.dart |
diff --git a/tools/test.dart b/tools/test.dart |
index 8ddf497676355c05131c9705bcaeee0090ceade0..438af580e2ec55663faa01a7bb138f9f3c96539b 100755 |
--- a/tools/test.dart |
+++ b/tools/test.dart |
@@ -47,7 +47,6 @@ |
#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,7 +55,8 @@ |
* basically add the directory here and you're done.) |
*/ |
final TEST_SUITE_DIRECTORIES = const [ |
- 'utils/tests/pub' |
+ 'utils/tests/pub', |
+ 'utils/tests/peg', |
Bob Nystrom
2012/04/20 21:34:01
Keep in alphabetical order.
Siggi Cherem (dart-lang)
2012/04/20 22:56:19
Done.
|
]; |
main() { |
@@ -145,9 +145,6 @@ main() { |
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)); |
} |