| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index bd759fc0c2f3c14f23888e6b6d9d11d45771fefd..93b92a4e07f9ad83c3f3101f5c389d30b553af89 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -14,6 +14,7 @@
|
| #import("../tests/language/test_config.dart");
|
| #import("../tests/standalone/test_config.dart");
|
| #import("../tests/stub-generator/test_config.dart");
|
| +#import("../runtime/tests/vm/test_config.dart");
|
|
|
| // TODO(ager): This activity tracking is temporary until stdout is
|
| // closed implicitly when nothing more can happen.
|
| @@ -53,5 +54,9 @@ main() {
|
| new IsolateTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| activityStarted();
|
| new StubGeneratorTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| + if (conf["component"] == "vm") {
|
| + activityStarted();
|
| + new VMTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
|
| + }
|
| }
|
| }
|
|
|