Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Unified Diff: tools/test.dart

Issue 8558018: Implement cc test suite and use it to run the VM tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add TODO for extra options. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+ }
}
}
« no previous file with comments | « no previous file | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698