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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py

Issue 2694703006: webkitpy: Fixing tests broken via WontFix change. (Closed)
Patch Set: Fixing assertIn Created 3 years, 10 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/port/test.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
index 7298eac5c0e55163b7ddb716c9d665f79f6d8d18..62ca5a630af5b3aea878802f9b466f8fa95c48d9 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
@@ -103,8 +103,10 @@ class TestList(object):
# These numbers may need to be updated whenever we add or delete tests. This includes virtual tests.
#
TOTAL_TESTS = 106
-TOTAL_SKIPS = 22
+TOTAL_WONTFIX = 3
+TOTAL_SKIPS = 22 + TOTAL_WONTFIX
TOTAL_CRASHES = 76
+
UNEXPECTED_PASSES = 1
UNEXPECTED_FAILURES = 26
@@ -298,6 +300,13 @@ Bug(test) passes/skipped/skip.html [ Skip ]
Bug(test) passes/text.html [ Pass ]
""")
+ if not filesystem.exists(LAYOUT_TEST_DIR + '/NeverFixTests'):
+ filesystem.write_text_file(LAYOUT_TEST_DIR + '/NeverFixTests', """
+Bug(test) failures/expected/keyboard.html [ WontFix ]
+Bug(test) failures/expected/exception.html [ WontFix ]
+Bug(test) failures/expected/device_failure.html [ WontFix ]
+""")
+
filesystem.maybe_make_directory(LAYOUT_TEST_DIR + '/reftests/foo')
filesystem.write_text_file(LAYOUT_TEST_DIR + '/reftests/foo/reftest.list', """
== test.html test-ref.html

Powered by Google App Engine
This is Rietveld 408576698