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

Unified Diff: tools/test-runtime.dart

Issue 8835008: Correctly handle the --arch argument to dart test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo Created 9 years 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 | « tools/test.dart ('k') | tools/testing/dart/multitest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index 47b9f59dd8bf901db445d6b19b4de7519b3f858c..9faa45a65728ad7db385ddb70b92d5ca92bafa59 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -30,6 +30,7 @@ main() {
Map<String, RegExp> selectors = firstConf['selectors'];
var maxProcesses = firstConf['tasks'];
var progressIndicator = firstConf['progress'];
+ var verbose = firstConf['verbose'];
var configurationIterator = configurations.iterator();
bool enqueueConfiguration(ProcessQueue queue) {
@@ -64,8 +65,9 @@ main() {
}
// Start process queue.
- var queue = new ProcessQueue(firstConf['tasks'],
- firstConf['progress'],
+ var queue = new ProcessQueue(maxProcesses,
+ progressIndicator,
+ verbose,
startTime,
enqueueConfiguration);
}
« no previous file with comments | « tools/test.dart ('k') | tools/testing/dart/multitest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698