| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 8ddf497676355c05131c9705bcaeee0090ceade0..543a493f8dcd8493bbd3d7734d3e06415a315646 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/peg',
|
| + 'utils/tests/pub',
|
| ];
|
|
|
| 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));
|
| }
|
|
|