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

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

Issue 2658793002: Report w3c test result count for WPT (Closed)
Patch Set: update Created 3 years, 11 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 10994fb19b30a448300366b60ceed6426fb9f9d9..fb21bd76535c766268a8c476f11c7a1495c77c72 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
@@ -64,6 +64,10 @@ def is_testharness_output_passing(content_text):
previous_line_is_console_line = False
continue
+ if line.startswith('Found'):
+ previous_line_is_console_line = False
+ continue
+
# Those are expected failing output.
if (line.startswith('FAIL') or
line.startswith('TIMEOUT') or

Powered by Google App Engine
This is Rietveld 408576698