Chromium Code Reviews| Index: tools/testing/dart/test_runner.dart |
| =================================================================== |
| --- tools/testing/dart/test_runner.dart (revision 23230) |
| +++ tools/testing/dart/test_runner.dart (working copy) |
| @@ -1654,7 +1654,9 @@ |
| print(fields.join('\t')); |
| return; |
| } |
| - if (test.usesWebDriver && _needsSelenium && !_isSeleniumAvailable || |
| + |
| + if (test.usesWebDriver && _needsSelenium && !test.usesBrowserController |
| + && !_isSeleniumAvailable || |
|
kustermann
2013/05/28 07:42:39
Tab character?
ricow1
2013/05/28 08:07:30
Stupid mac :-)
|
| (test is BrowserTestCase && test.waitingForOtherTest)) { |
| // The test is not yet ready to run. Put the test back in |
| // the queue. Avoid spin-polling by using a timeout. |