| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| index a474151d4d6024d3f9cc1b4cf20637a40e672e8b..702a30c09d53a1a67ac89ac5fdb9bfd46a28f1b1 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/single_test_runner.py
|
| @@ -300,7 +300,8 @@ class SingleTestRunner(object):
|
|
|
| if not testharness_results.is_testharness_output(text):
|
| return False, []
|
| - if not testharness_results.is_testharness_output_passing(text):
|
| + if (not testharness_results.is_testharness_output_passing(text) or
|
| + testharness_results.is_testharness_output_with_console_errors(text)):
|
| return True, [test_failures.FailureTestHarnessAssertion()]
|
| return True, []
|
|
|
|
|