Changeset 243773 in webkit
- Timestamp:
- Apr 2, 2019, 5:04:26 PM (7 years ago)
- Location:
- branches/safari-607-branch/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/api_tests/manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-607-branch/Tools/ChangeLog
r243772 r243773 1 2019-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 1 28 2019-04-02 Kocsen Chung <kocsen_chung@apple.com> 2 29 -
branches/safari-607-branch/Tools/Scripts/webkitpy/api_tests/manager.py
r243748 r243773 132 132 def _initialize_devices(self): 133 133 if 'simulator' in self._port.port_name: 134 SimulatedDeviceManager.initialize_devices(DeviceRequest(self._port.DE FAULT_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) 135 135 elif 'device' in self._port.port_name: 136 136 raise RuntimeError('Running api tests on {} is not supported'.format(self._port.port_name))
Note:
See TracChangeset
for help on using the changeset viewer.