Changeset 128662 in webkit


Ignore:
Timestamp:
Sep 14, 2012 3:48:12 PM (12 years ago)
Author:
Stephanie Lewis
Message:

mac-future ignores previous platform TestExpectations.
https://bugs.webkit.org/show_bug.cgi?id=96718.

Reviewed by Dirk Pranke.

TestExpectations match an expectation's configuraton against a list of configurations that are
valid for that port. That list does not contain mac-future so none of the expectations can be
applied.

  • Scripts/webkitpy/layout_tests/port/apple.py:

(ApplePort._generate_all_test_configurations):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r128658 r128662  
     12012-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
    1152012-09-14  Adam Barth  <abarth@webkit.org>
    216
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/apple.py

    r127190 r128662  
    9393    def _generate_all_test_configurations(self):
    9494        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:
    9697            for build_type in self.ALL_BUILD_TYPES:
    9798                for architecture in self.ARCHITECTURES:
Note: See TracChangeset for help on using the changeset viewer.