| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index ca1fb7d8d2609b62bf826c75cea0a3a9ede408e4..f806a955143f6d856f51c89147a1ccddf8315678 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -213,8 +213,9 @@ class RunningProcess {
|
| stdout = new List<String>();
|
| stderr = new List<String>();
|
| if (testCase is BrowserTestCase) {
|
| - runCommand(testCase.compilerPath,
|
| - testCase.compilerArguments,
|
| + BrowserTestCase browserTestCase = testCase;
|
| + runCommand(browserTestCase.compilerPath,
|
| + browserTestCase.compilerArguments,
|
| compilerExitHandler);
|
| } else {
|
| runCommand(testCase.executablePath, testCase.arguments, exitHandler);
|
|
|