| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 996893837cd3261ef48da11f3206bfa6bf53c6eb..12cff100c5a64c6acbc267704e242cb41a0f82d5 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -128,7 +128,9 @@ main() {
|
| var testSuites = new List<TestSuite>();
|
| var maxBrowserProcesses = maxProcesses;
|
| for (var conf in configurations) {
|
| - // We can't run multiple IE processes in parallel.
|
| + // There should not be more than one InternetExplorerDriver instance
|
| + // running at a time. For details, see
|
| + // http://code.google.com/p/selenium/wiki/InternetExplorerDriver.
|
| if (conf['runtime'].startsWith('ie')) {
|
| maxBrowserProcesses = 1;
|
| }
|
|
|