Changeset 128662 in webkit
- Timestamp:
- Sep 14, 2012, 3:48:12 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r128658 r128662 1 2012-09-13 Stephanie Lewis <slewis@apple.com> 2 3 mac-future ignores previous platform TestExpectations. 4 https://bugs.webkit.org/show_bug.cgi?id=96718. 5 6 Reviewed by Dirk Pranke. 7 8 TestExpectations match an expectation's configuraton against a list of configurations that are 9 valid for that port. That list does not contain mac-future so none of the expectations can be 10 applied. 11 12 * Scripts/webkitpy/layout_tests/port/apple.py: 13 (ApplePort._generate_all_test_configurations): 14 1 15 2012-09-14 Adam Barth <abarth@webkit.org> 2 16 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/apple.py
r127190 r128662 93 93 def _generate_all_test_configurations(self): 94 94 configurations = [] 95 for port_name in self.VERSION_FALLBACK_ORDER: 95 allowed_port_names = self.VERSION_FALLBACK_ORDER + [self.operating_system() + "-future"] 96 for port_name in allowed_port_names: 96 97 for build_type in self.ALL_BUILD_TYPES: 97 98 for architecture in self.ARCHITECTURES:
Note:
See TracChangeset
for help on using the changeset viewer.