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

Unified Diff: tests/standalone/io/skipping_dart2js_compilations_test.dart

Issue 12035053: Support for running a limited amount of browser tests in parallel (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 | tests/standalone/io/test_runner_test.dart » ('j') | tools/test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/skipping_dart2js_compilations_test.dart
diff --git a/tests/standalone/io/skipping_dart2js_compilations_test.dart b/tests/standalone/io/skipping_dart2js_compilations_test.dart
index 9409fc0db9ae39c43c11997f6799398ef28603c9..74058a7d23f38c10e10b3935ed27b2b9ab77c014 100644
--- a/tests/standalone/io/skipping_dart2js_compilations_test.dart
+++ b/tests/standalone/io/skipping_dart2js_compilations_test.dart
@@ -206,8 +206,9 @@ void main() {
fs_upToDate.touchFile(fs_upToDate.testJs);
void runTest(String name, FileUtils fileUtils, bool shouldRun) {
- new runner.RunningProcess(makeTestCase(name,
- new TestCompletedHandler(fileUtils, shouldRun))).start();
+ var testCase = makeTestCase(
+ name, new TestCompletedHandler(fileUtils, shouldRun));
+ new runner.RunningProcess(testCase, testCase.commands[0]).start();
}
runTest("fs_noTestJs", fs_noTestJs, true);
runTest("fs_noTestJsDeps", fs_noTestJsDeps, true);
« no previous file with comments | « no previous file | tests/standalone/io/test_runner_test.dart » ('j') | tools/test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698