Chromium Code Reviews| Index: tools/testing/dart/test_runner.dart |
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart |
| index 54800d2fd9122e80096349834fe3db42bbdf60a3..7afb4667e50399511fb9bec806883f89d7161c4a 100644 |
| --- a/tools/testing/dart/test_runner.dart |
| +++ b/tools/testing/dart/test_runner.dart |
| @@ -1665,7 +1665,7 @@ class ProcessQueue { |
| _progress.done(testCase); |
| if (testCase is BrowserTestCase) testCase.notifyObservers(); |
| } else { |
| - _tests.add(testCase); |
| + _tests.addFirst(testCase); |
|
ngeoffray
2013/01/31 12:56:31
I thought you could not do this because if it's an
kustermann
2013/01/31 13:01:17
Well, I was kind of stupid. It's save to put it in
|
| } |
| _tryRunTest(); |
| }); |