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

Unified Diff: webkit/tools/layout_tests/layout_package/test_expectations.py

Issue 356007: Add a way to mark a test as missing expectations. We avoided added this... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « webkit/tools/layout_tests/layout_package/compare_failures.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/layout_package/test_expectations.py
===================================================================
--- webkit/tools/layout_tests/layout_package/test_expectations.py (revision 30861)
+++ webkit/tools/layout_tests/layout_package/test_expectations.py (working copy)
@@ -19,7 +19,7 @@
# Test expectation and modifier constants.
(PASS, FAIL, TEXT, IMAGE, IMAGE_PLUS_TEXT, TIMEOUT, CRASH, SKIP, WONTFIX,
- DEFER, SLOW, REBASELINE, NONE) = range(13)
+ DEFER, SLOW, REBASELINE, MISSING, NONE) = range(14)
# Test expectation file update action constants
(NO_CHANGE, REMOVE_TEST, REMOVE_PLATFORM, ADD_PLATFORMS_EXCEPT_THIS) = range(4)
@@ -216,7 +216,8 @@
'image': IMAGE,
'image+text': IMAGE_PLUS_TEXT,
'timeout': TIMEOUT,
- 'crash': CRASH }
+ 'crash': CRASH,
+ 'missing': MISSING }
PLATFORMS = [ 'mac', 'linux', 'win', 'win-xp', 'win-vista', 'win-7' ]
« no previous file with comments | « webkit/tools/layout_tests/layout_package/compare_failures.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698