Chromium Code Reviews| 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, |