| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 5ce6b7ebd94f01cc963a86a8a92704b3ad298115..50721c44ccce5ff0973b93c084c3eec6250e9010 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -103,7 +103,14 @@ class BrowserTestCase extends TestCase {
|
| configuration,
|
| completedHandler,
|
| expectedOutcomes,
|
| - isNegative);
|
| + isNegative) {
|
| + if (compilerPath != null) {
|
| + commandLine = 'execution command: $commandLine';
|
| + String compilationCommand =
|
| + '$compilerPath ${Strings.join(compilerArguments, " ")}';
|
| + commandLine = 'compilation command: $compilationCommand\n$commandLine';
|
| + }
|
| + }
|
| }
|
|
|
|
|
| @@ -186,9 +193,12 @@ class RunningProcess {
|
|
|
| void compilerExitHandler(int exitCode) {
|
| if (exitCode != 0) {
|
| + stderr.add('test.dart: Compilation step failed (exit code $exitCode)\n');
|
| exitHandler(exitCode);
|
| } else {
|
| process.close();
|
| + stderr.add('test.dart: Compilation finished, starting execution\n');
|
| + stdout.add('test.dart: Compilation finished, starting execution\n');
|
| runCommand(testCase.executablePath, testCase.arguments, exitHandler);
|
| }
|
| }
|
|
|