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

Unified Diff: tools/test.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.dart
diff --git a/tools/test.dart b/tools/test.dart
index 3077ac6a2f38ea79c979b81006088f1a48756fc0..2f8d965837a65d91f72b667e44b94bf4705d5a41 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -156,8 +156,13 @@ main() {
DebugLogger.close();
}
+ // We can't run multiple IE processes in parallel.
+ var maxBrowserProcesses =
+ firstConf['runtime'].contains('ie') ? 1 : maxProcesses;
ahe 2013/01/29 09:18:42 This is probably good enough for now, but I think
Mads Ager (google) 2013/01/29 10:47:48 Or none of them will be throttled because we only
kustermann 2013/01/29 12:10:49 Thanks for catching this peter. Since I never use
kustermann 2013/01/29 12:10:49 IMHO, we should pass it to the process queue becau
+
// Start process queue.
new ProcessQueue(maxProcesses,
+ maxBrowserProcesses,
progressIndicator,
startTime,
printTiming,

Powered by Google App Engine
This is Rietveld 408576698