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

Unified Diff: tools/testing/dart/test_runner.dart

Issue 12114027: If we made progress, add testCases to the front of the queue in test_runner.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: 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();
});
« 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