| 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);
|
|
|