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

Unified Diff: dart/tools/test.dart

Issue 23436004: Reduce the number of processes/tests run in parallel by test.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/test.dart
diff --git a/dart/tools/test.dart b/dart/tools/test.dart
index 03bb4e993e1c244b5a5169fb4f71faa54f93869f..4539eb6e4de5ebd90209250b6b2b80f0745995ed 100755
--- a/dart/tools/test.dart
+++ b/dart/tools/test.dart
@@ -157,7 +157,8 @@ void testConfigurations(List<Map> configurations) {
// There should not be more than one InternetExplorerDriver instance
// running at a time. For details, see
// http://code.google.com/p/selenium/wiki/InternetExplorerDriver.
ahe 2013/08/30 09:31:14 Remove this comment.
kustermann 2013/08/30 09:34:39 Done.
- if (conf['runtime'].startsWith('ie') && !conf["use_browser_controller"]) {
+ if (conf['runtime'].startsWith('ie')) {
ahe 2013/08/30 09:31:14 Could you include a comment inside this "then" blo
kustermann 2013/08/30 09:34:39 Done.
+ maxProcesses = math.max(1, maxProcesses-2);
maxBrowserProcesses = 1;
} else if (conf['runtime'].startsWith('safari') &&
conf['use_browser_controller']) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698