| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index d98fa2c23b3461eaea994672c0a7c8f3ff1f20c5..306566522252fa4f162e9c112c44adec23fdba65 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -8,9 +8,11 @@
|
| #import("testing/dart/test_runner.dart");
|
| #import("testing/dart/test_options.dart");
|
|
|
| -#import("../tests/standalone/test_config.dart");
|
| -#import("../tests/corelib/test_config.dart");
|
| #import("../tests/co19/test_config.dart");
|
| +#import("../tests/corelib/test_config.dart");
|
| +#import("../tests/isolate/test_config.dart");
|
| +#import("../tests/language/test_config.dart");
|
| +#import("../tests/standalone/test_config.dart");
|
|
|
| // TODO(ager): This activity tracking is temporary until stdout is
|
| // closed implicitly when nothing more can happen.
|
| @@ -44,5 +46,9 @@ main() {
|
| new CorelibTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| activityStarted();
|
| new Co19TestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| + activityStarted();
|
| + new LanguageTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| + activityStarted();
|
| + new IsolateTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| }
|
| }
|
|
|