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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py

Issue 20830003: Get rid of the distinction between modifiers and expectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: clean up a couple things Created 7 years, 5 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: Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
index 6ace3ebe0c56fdf57110b1951501281c139f7fe4..b5ae2dd78becf879ea9991536fd380c3a3dbbd63 100644
--- a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
+++ b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
@@ -147,9 +147,6 @@ def summarize_results(port_obj, expectations, initial_results, retry_results, en
for expecation_string, expectation_enum in test_expectations.TestExpectations.EXPECTATIONS.iteritems():
keywords[expectation_enum] = expecation_string.upper()
- for modifier_string, modifier_enum in test_expectations.TestExpectations.MODIFIERS.iteritems():
- keywords[modifier_enum] = modifier_string.upper()
-
num_failures_by_type = {}
for expectation in initial_results.tests_by_expectation:
num_failures_by_type[keywords[expectation]] = len(initial_results.tests_by_expectation[expectation] & tbt[test_expectations.NOW])

Powered by Google App Engine
This is Rietveld 408576698