| Index: dart/tools/testing/dart/test_runner.dart
|
| diff --git a/dart/tools/testing/dart/test_runner.dart b/dart/tools/testing/dart/test_runner.dart
|
| index 11b25f286ec69316d4e87b945a985540e031b7f6..ac4ba2f9e3ed361dad8339375c16d6119bb67aeb 100644
|
| --- a/dart/tools/testing/dart/test_runner.dart
|
| +++ b/dart/tools/testing/dart/test_runner.dart
|
| @@ -1255,8 +1255,10 @@ class CompilationCommandOutputImpl extends CommandOutputImpl {
|
| static const DART2JS_EXITCODE_CRASH = 253;
|
|
|
| CompilationCommandOutputImpl(Command command, int exitCode, bool timedOut,
|
| - List<int> stdout, List<int> stderr, Duration time)
|
| - : super(command, exitCode, timedOut, stdout, stderr, time, false);
|
| + List<int> stdout, List<int> stderr, Duration time,
|
| + bool compilationSkipped)
|
| + : super(command, exitCode, timedOut, stdout, stderr, time,
|
| + compilationSkipped);
|
|
|
| Expectation result(TestCase testCase) {
|
| // Handle general crash/timeout detection.
|
| @@ -1342,7 +1344,7 @@ CommandOutput createCommandOutput(Command command,
|
| command, exitCode, timedOut, stdout, stderr, time);
|
| } else if (command is CompilationCommand) {
|
| return new CompilationCommandOutputImpl(
|
| - command, exitCode, timedOut, stdout, stderr, time);
|
| + command, exitCode, timedOut, stdout, stderr, time, compilationSkipped);
|
| } else if (command is JSCommandlineCommand) {
|
| return new JsCommandlineOutputImpl(
|
| command, exitCode, timedOut, stdout, stderr, time);
|
|
|