| 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 a365f67ac7502763a12c49dfa6f763ec13bb8cdc..5b17cc251256ab691e47a1e91b61770987bc2bdd 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
|
| @@ -231,7 +231,7 @@ class TestExpectationParser(object):
|
| # FIXME: Update the original specifiers and remove this once the old syntax is gone.
|
| _configuration_tokens_list = [
|
| 'Mac', 'Mac10.6', 'Mac10.7', 'Mac10.8', 'Mac10.9', 'Mac10.10', 'Retina',
|
| - 'Win', 'XP', 'Win7', 'Win10',
|
| + 'Win', 'Win7', 'Win10',
|
| 'Linux', 'Linux32', 'Precise', 'Trusty',
|
| 'Android',
|
| 'Release',
|
| @@ -411,6 +411,9 @@ class TestExpectationLine(object):
|
| self.warnings = []
|
| self.is_skipped_outside_expectations_file = False
|
|
|
| + def __str__(self):
|
| + return "TestExpectationLine{name=%s, matching_configurations=%s, original_string=%s}" % (self.name, self.matching_configurations, self.original_string)
|
| +
|
| def __eq__(self, other):
|
| return (self.original_string == other.original_string
|
| and self.filename == other.filename
|
|
|