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

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
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/test-runtime.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 3077ac6a2f38ea79c979b81006088f1a48756fc0..996893837cd3261ef48da11f3206bfa6bf53c6eb 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -126,7 +126,12 @@ main() {
}
var testSuites = new List<TestSuite>();
+ var maxBrowserProcesses = maxProcesses;
for (var conf in configurations) {
+ // We can't run multiple IE processes in parallel.
+ if (conf['runtime'].startsWith('ie')) {
+ maxBrowserProcesses = 1;
+ }
TestingServerRunner.setPackageRootDir(conf);
for (String key in selectors.keys) {
if (key == 'co19') {
@@ -158,6 +163,7 @@ main() {
// Start process queue.
new ProcessQueue(maxProcesses,
+ maxBrowserProcesses,
progressIndicator,
startTime,
printTiming,
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698