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

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..b08bba0181366adb7c0358ba86a9348155491c06 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -155,9 +155,12 @@ main() {
TestingServerRunner.terminateHttpServers();
DebugLogger.close();
}
+ var maxBrowserProcesses =
ricow1 2013/01/24 09:04:28 Add a comment as to why we do this
kustermann 2013/01/29 08:43:32 Done.
+ firstConf['runtime'].contains('ie') ? 1 : maxProcesses;
// Start process queue.
new ProcessQueue(maxProcesses,
+ maxBrowserProcesses,
progressIndicator,
startTime,
printTiming,

Powered by Google App Engine
This is Rietveld 408576698