| 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 df9e5ec35b06e1a5ea170e62dfb3517e34b3024f..a555f7663132833e0a53fcd85ff7a1b02cc58fbb 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/603753) - Don't let NeedsRebaseline be checked in while the auto-rebaseline-bot is down.
|
| + if self.NEEDS_REBASELINE_MODIFIER in expectations:
|
| + expectation_line.warnings.append('NeedsRebaseline is broken at the moment. See crbug.com/603753.')
|
| +
|
| 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):
|
|
|