⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185698 in webkit


Ignore:
Timestamp:
Jun 18, 2015, 2:22:48 AM (11 years ago)
Author:
Gyuyoung Kim
Message:

Remove redundant Chromium bug keyword
https://bugs.webkit.org/show_bug.cgi?id=146097

Reviewed by Csaba Osztrogonác.

  • Scripts/webkitpy/layout_tests/models/test_expectations.py:

(TestExpectationParser._parse_modifiers): Remove BUGCR for TestExpectations.
(TestExpectationLine._format_line): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r185692 r185698  
     12015-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
    1122015-06-17  Daniel Bates  <dabates@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py

    r185581 r185698  
    149149                has_bugid = True
    150150                if re.match(self.BUG_MODIFIER_REGEX, modifier):
    151                     expectation_line.warnings.append('BUG\d+ is not allowed, must be one of BUGCR\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.')
    152152                else:
    153153                    expectation_line.parsed_bug_modifiers.append(modifier)
     
    448448            if modifier.startswith('BUGWK'):
    449449                bugs.append('webkit.org/b/' + modifier.replace('BUGWK', ''))
    450             elif modifier.startswith('BUGCR'):
    451                 bugs.append('crbug.com/' + modifier.replace('BUGCR', ''))
    452450            elif modifier.startswith('BUG'):
    453451                # FIXME: we should preserve case once we can drop the old syntax.
Note: See TracChangeset for help on using the changeset viewer.