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

Unified Diff: tools/test-runtime.dart

Issue 12035053: Support for running a limited amount of browser tests in parallel (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months 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
Index: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index a959f23424f8305b990fb60d881cab5d610d9baf..036c861d05daecc0b2cb80766248b837b905d4a5 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -102,9 +102,12 @@ main() {
if (runningBrowserTests) startHttpServer('127.0.0.1', 9876);
}
+ var maxBrowserProcesses = maxProcesses;
+
// Start process queue.
new ProcessQueue(
maxProcesses,
+ maxBrowserProcesses,
progressIndicator,
startTime,
printTiming,

Powered by Google App Engine
This is Rietveld 408576698