| Index: Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py b/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| index ddf405941f9d2a632caee438772a237d36fe7ce5..0803df4c3da9e3ecb6ba714890e6bfdbbdf4fd57 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| @@ -368,9 +368,7 @@
|
| # This can save a lot of execution time if we have a lot of crashes or timeouts.
|
| if test_output.crash or test_output.timeout:
|
| expected_driver_output = DriverOutput(text=None, image=None, image_hash=None, audio=None)
|
| - test_result = self._compare_output(expected_driver_output, test_output)
|
| - test_result_writer.write_test_result(self._filesystem, self._port, self._results_directory, self._test_name, test_output, reference_output, test_result.failures)
|
| - return test_result
|
| + return self._compare_output(expected_driver_output, test_output)
|
|
|
| # A reftest can have multiple match references and multiple mismatch references;
|
| # the test fails if any mismatch matches and all of the matches don't match.
|
|
|