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

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

Issue 2061963002: Disable NeedsRebaseline and webkit-patch rebaseline[-expectations] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable NeedsRebaseline and webkit-patch rebaseline[-expectations] Created 4 years, 6 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/test_expectations.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
index 233fc039fcec054053797918daf42b679b3d9470..3dbf4060e7c1ddf396687514743b441f52a26d28 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
@@ -170,6 +170,10 @@ class TestExpectationParser(object):
if self.REBASELINE_MODIFIER in expectations:
expectation_line.warnings.append('REBASELINE should only be used for running rebaseline.py. Cannot be checked in.')
+ # TODO(crbug.com/574272) - Don't let NeedsRebaseline be checked before the bug is fixed.
+ if self.NEEDS_REBASELINE_MODIFIER in expectations:
+ expectation_line.warnings.append('NeedsRebaseline is broken at the moment. Use NeedsManualRebaseline instead. See crbug.com/574272.')
+
if self.NEEDS_REBASELINE_MODIFIER in expectations or self.NEEDS_MANUAL_REBASELINE_MODIFIER in expectations:
for test in expectation_line.matching_tests:
if self._port.reference_files(test):

Powered by Google App Engine
This is Rietveld 408576698