⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243773 in webkit


Ignore:
Timestamp:
Apr 2, 2019, 5:04:26 PM (7 years ago)
Author:
Kocsen Chung
Message:

Cherry-pick r240151. rdar://problem/49539128

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.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240151 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-607-branch/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Tools/ChangeLog

    r243772 r243773  
     12019-04-02  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Cherry-pick r240151. rdar://problem/49539128
     4
     5    webkitpy: Implement device type specific expected results (Follow-up fix)
     6    https://bugs.webkit.org/show_bug.cgi?id=192162
     7    <rdar://problem/46345449>
     8   
     9    Unreviewed infrastructure fix.
     10   
     11    * Scripts/webkitpy/api_tests/manager.py:
     12    (Manager._initialize_devices): Use DEVICE_TYPE when running API tests.
     13   
     14   
     15    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@240151 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     16
     17    2019-01-18  Jonathan Bedard  <jbedard@apple.com>
     18
     19            webkitpy: Implement device type specific expected results (Follow-up fix)
     20            https://bugs.webkit.org/show_bug.cgi?id=192162
     21            <rdar://problem/46345449>
     22
     23            Unreviewed infrastructure fix.
     24
     25            * Scripts/webkitpy/api_tests/manager.py:
     26            (Manager._initialize_devices): Use DEVICE_TYPE when running API tests.
     27
    1282019-04-02  Kocsen Chung  <kocsen_chung@apple.com>
    229
  • branches/safari-607-branch/Tools/Scripts/webkitpy/api_tests/manager.py

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