Index: tools/testing/dart/test_runner.dart |
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart |
index eeb1d6931c16ef0aec684e5e1082fc36c5f613e8..ffd99217056de79dd0b39826deadd5f05e9694d6 100644 |
--- a/tools/testing/dart/test_runner.dart |
+++ b/tools/testing/dart/test_runner.dart |
@@ -1679,6 +1679,10 @@ CommandOutput createCommandOutput(Command command, |
return new VmCommandOutputImpl( |
command, exitCode, timedOut, stdout, stderr, time, pid); |
} else if (command is CompilationCommand) { |
+ if (command.displayName == 'precompiler.dart') { |
+ return new VmCommandOutputImpl( |
+ command, exitCode, timedOut, stdout, stderr, time, pid); |
+ } |
return new CompilationCommandOutputImpl( |
command, exitCode, timedOut, stdout, stderr, time, compilationSkipped); |
} else if (command is JSCommandlineCommand) { |