Changeset 240151 in webkit


Ignore:
Timestamp:
Jan 18, 2019 8:54:23 AM (5 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Implement device type specific expected results (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=192162
<rdar://problem/46345449>

Unreviewed infrastructure fix.

  • Scripts/webkitpy/api_tests/manager.py:

(Manager._initialize_devices): Use DEVICE_TYPE when running API tests.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240150 r240151  
     12019-01-18  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Implement device type specific expected results (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=192162
     5        <rdar://problem/46345449>
     6
     7        Unreviewed infrastructure fix.
     8
     9        * Scripts/webkitpy/api_tests/manager.py:
     10        (Manager._initialize_devices): Use DEVICE_TYPE when running API tests.
     11
    1122019-01-18  Jonathan Bedard  <jbedard@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/api_tests/manager.py

    r238763 r240151  
    129129    def _initialize_devices(self):
    130130        if 'simulator' in self._port.port_name:
    131             SimulatedDeviceManager.initialize_devices(DeviceRequest(self._port.DEFAULT_DEVICE_TYPE, allow_incomplete_match=True), self.host, simulator_ui=False)
     131            SimulatedDeviceManager.initialize_devices(DeviceRequest(self._port.DEVICE_TYPE, allow_incomplete_match=True), self.host, simulator_ui=False)
    132132        elif 'device' in self._port.port_name:
    133133            raise RuntimeError('Running api tests on {} is not supported'.format(self._port.port_name))
Note: See TracChangeset for help on using the changeset viewer.