| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
|
| index 4fe23f3a6b5577ddb963176ceb63e6ab8e8075f5..5db74a02d21c75b7a32d63adfca22fc5cc698c78 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults.py
|
| @@ -159,3 +159,6 @@ class LayoutTestResults(object):
|
|
|
| def unexpected_mismatch_results(self):
|
| return self._filter_tests(lambda r: r.has_mismatch_result() and not r.did_run_as_expected())
|
| +
|
| + def didnt_run_as_expected_results(self):
|
| + return self._filter_tests(lambda r: not r.did_run_as_expected())
|
|
|