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

Unified Diff: tools/test.dart

Issue 8539044: Enable co19 test suite on dart test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. 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/standalone/test_config.dart ('k') | tools/testing/dart/status_file_parser.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 0954647bb54282ad377c3c8ae0c15f5f66cc71de..d98fa2c23b3461eaea994672c0a7c8f3ff1f20c5 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -10,6 +10,7 @@
#import("../tests/standalone/test_config.dart");
#import("../tests/corelib/test_config.dart");
+#import("../tests/co19/test_config.dart");
// TODO(ager): This activity tracking is temporary until stdout is
// closed implicitly when nothing more can happen.
@@ -41,5 +42,7 @@ main() {
new StandaloneTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
activityStarted();
new CorelibTestSuite(conf).forEachTest(queue.runTest, activityCompleted);
+ activityStarted();
+ new Co19TestSuite(conf).forEachTest(queue.runTest, activityCompleted);
}
}
« no previous file with comments | « tests/standalone/test_config.dart ('k') | tools/testing/dart/status_file_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698