Changeset 181131 in webkit


Ignore:
Timestamp:
Mar 5, 2015 8:04:29 PM (9 years ago)
Author:
ddkilzer@apple.com
Message:

[iOS] TestExpectations for ios-simulator-wk2 should fall back to 'wk2' after 'ios-simulator'
<http://webkit.org/b/142226>

Reviewed by Darin Adler.

  • Scripts/webkitpy/port/ios.py:

(IOSSimulatorPort.default_baseline_search_path): Switch the
TestExpectations order of ios-simulator-wk2 from this:

ios-simulator-wk2, wk2, ios-simulator

To this:

ios-simulator-wk2, ios-simualtor, wk2

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r181125 r181131  
     12015-03-05  David Kilzer  <ddkilzer@apple.com>
     2
     3        [iOS] TestExpectations for ios-simulator-wk2 should fall back to 'wk2' after 'ios-simulator'
     4        <http://webkit.org/b/142226>
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/webkitpy/port/ios.py:
     9        (IOSSimulatorPort.default_baseline_search_path): Switch the
     10        TestExpectations order of ios-simulator-wk2 from this:
     11          ios-simulator-wk2, wk2, ios-simulator
     12        To this:
     13          ios-simulator-wk2, ios-simualtor, wk2
     14
    1152015-03-05  Brent Fulgham  <bfulgham@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/port/ios.py

    r180845 r181131  
    194194    def default_baseline_search_path(self):
    195195        if self.get_option('webkit_test_runner'):
    196             fallback_names = [self._wk2_port_name(), 'wk2'] + [self.port_name]
     196            fallback_names = [self._wk2_port_name()] + [self.port_name] + ['wk2']
    197197        else:
    198198            fallback_names = [self.port_name + '-wk1'] + [self.port_name]
Note: See TracChangeset for help on using the changeset viewer.