| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 62d1f48600179169e3cf9212d4a588fd7bd1a227..6085999d0788367e92d686200db48c7a85cf301d 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -20,6 +20,9 @@
|
| #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/await/test_config.dart");
|
| +#import("../utils/tests/css/test_config.dart");
|
| +#import("../utils/tests/peg/test_config.dart");
|
|
|
| main() {
|
| var startTime = new Date.now();
|
| @@ -76,6 +79,15 @@ main() {
|
| if (selectors.containsKey('dartc')) {
|
| queue.addTestSuite(new ClientDartcTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('css')) {
|
| + queue.addTestSuite(new CssTestSuite(conf));
|
| + }
|
| + if (selectors.containsKey('peg')) {
|
| + queue.addTestSuite(new PegTestSuite(conf));
|
| + }
|
| + if (selectors.containsKey('await')) {
|
| + queue.addTestSuite(new AwaitTestSuite(conf));
|
| + }
|
|
|
| return true;
|
| }
|
|
|