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

Unified Diff: tools/test.dart

Issue 8590025: Support stub-generator tests on the VM (which does not actually generate the stubs). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Enable by default. 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 | « tests/stub-generator/test_config.dart ('k') | tools/testing/dart/test_options.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 306566522252fa4f162e9c112c44adec23fdba65..bd759fc0c2f3c14f23888e6b6d9d11d45771fefd 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -13,6 +13,7 @@
#import("../tests/isolate/test_config.dart");
#import("../tests/language/test_config.dart");
#import("../tests/standalone/test_config.dart");
+#import("../tests/stub-generator/test_config.dart");
// TODO(ager): This activity tracking is temporary until stdout is
// closed implicitly when nothing more can happen.
@@ -50,5 +51,7 @@ main() {
new LanguageTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
activityStarted();
new IsolateTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
+ activityStarted();
+ new StubGeneratorTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
}
}
« no previous file with comments | « tests/stub-generator/test_config.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698