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

Unified Diff: tools/test.dart

Issue 8540002: Use the configuration for determining the binary to use for testing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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_expression.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 83cc775284d533451c549ba5f9e865b01b86b127..965637249e3434a67bcca3fdf7e855666afc80fd 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -16,6 +16,6 @@ main() {
var configuration = optionsParser.parse(new Options().arguments);
if (configuration == null) return;
var queue = new ProcessQueue(configuration['tasks']);
- new StandaloneTestSuite().forEachTest(queue.runTest);
- new CorelibTestSuite().forEachTest(queue.runTest);
+ new StandaloneTestSuite(configuration).forEachTest(queue.runTest);
+ new CorelibTestSuite(configuration).forEachTest(queue.runTest);
}
« no previous file with comments | « tests/standalone/test_config.dart ('k') | tools/testing/dart/status_expression.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698