| Index: Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| index 95146472146cd0b51e3482dd3f0a65233bf829d2..af1f46d143a3de789f2b347b798073947e5ac3db 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| @@ -149,6 +149,9 @@ def _interpret_test_failures(failures):
|
| if test_failures.FailureMissingImage in failure_types or test_failures.FailureMissingImageHash in failure_types:
|
| test_dict['is_missing_image'] = True
|
|
|
| + if test_failures.FailureTestHarnessAssertion in failure_types:
|
| + test_dict['is_testharness_test'] = True
|
| +
|
| return test_dict
|
|
|
|
|
|
|