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 |