Changeset 185698 in webkit
- Timestamp:
- Jun 18, 2015, 2:22:48 AM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/models/test_expectations.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r185692 r185698 1 2015-06-18 Gyuyoung Kim <gyuyoung.kim@webkit.org> 2 3 Remove redundant Chromium bug keyword 4 https://bugs.webkit.org/show_bug.cgi?id=146097 5 6 Reviewed by Csaba Osztrogonác. 7 8 * Scripts/webkitpy/layout_tests/models/test_expectations.py: 9 (TestExpectationParser._parse_modifiers): Remove BUGCR for TestExpectations. 10 (TestExpectationLine._format_line): Deleted. 11 1 12 2015-06-17 Daniel Bates <dabates@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
r185581 r185698 149 149 has_bugid = True 150 150 if re.match(self.BUG_MODIFIER_REGEX, modifier): 151 expectation_line.warnings.append('BUG\d+ is not allowed, must be one of BUG CR\d+, BUGWK\d+, BUGV8_\d+, or a non-numeric bug identifier.')151 expectation_line.warnings.append('BUG\d+ is not allowed, must be one of BUGWK\d+, or a non-numeric bug identifier.') 152 152 else: 153 153 expectation_line.parsed_bug_modifiers.append(modifier) … … 448 448 if modifier.startswith('BUGWK'): 449 449 bugs.append('webkit.org/b/' + modifier.replace('BUGWK', '')) 450 elif modifier.startswith('BUGCR'):451 bugs.append('crbug.com/' + modifier.replace('BUGCR', ''))452 450 elif modifier.startswith('BUG'): 453 451 # FIXME: we should preserve case once we can drop the old syntax.
Note:
See TracChangeset
for help on using the changeset viewer.