Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py

Issue 2782653002: Revert of Fix testharness result parsing, make "Harness error" count as failure. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
index 6102e3e38dcd3d78ce9907ba49aa6e075f9abb8c..8407b1d877a7ec8c49c4a3bd747139980af6e537 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/testharness_results.py
@@ -53,7 +53,7 @@
if (line.startswith('FAIL') or
line.startswith('TIMEOUT') or
line.startswith('NOTRUN') or
- line.startswith('Harness Error.')):
+ line.startswith('Harness Error. harness_status = ')):
return False
return at_least_one_pass

Powered by Google App Engine
This is Rietveld 408576698