Title: [243773] branches/safari-607-branch/Tools
- Revision
- 243773
- Author
- [email protected]
- Date
- 2019-04-02 17:04:26 -0700 (Tue, 02 Apr 2019)
Log 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
Modified Paths
Diff
Modified: branches/safari-607-branch/Tools/ChangeLog (243772 => 243773)
--- branches/safari-607-branch/Tools/ChangeLog 2019-04-03 00:04:23 UTC (rev 243772)
+++ branches/safari-607-branch/Tools/ChangeLog 2019-04-03 00:04:26 UTC (rev 243773)
@@ -1,5 +1,32 @@
2019-04-02 Kocsen Chung <[email protected]>
+ 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
+
+ 2019-01-18 Jonathan Bedard <[email protected]>
+
+ 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.
+
+2019-04-02 Kocsen Chung <[email protected]>
+
Cherry-pick r240150. rdar://problem/49539128
webkitpy: Implement device type specific expected results (Part 2)
Modified: branches/safari-607-branch/Tools/Scripts/webkitpy/api_tests/manager.py (243772 => 243773)
--- branches/safari-607-branch/Tools/Scripts/webkitpy/api_tests/manager.py 2019-04-03 00:04:23 UTC (rev 243772)
+++ branches/safari-607-branch/Tools/Scripts/webkitpy/api_tests/manager.py 2019-04-03 00:04:26 UTC (rev 243773)
@@ -131,7 +131,7 @@
def _initialize_devices(self):
if 'simulator' in self._port.port_name:
- SimulatedDeviceManager.initialize_devices(DeviceRequest(self._port.DEFAULT_DEVICE_TYPE, allow_incomplete_match=True), self.host, simulator_ui=False)
+ SimulatedDeviceManager.initialize_devices(DeviceRequest(self._port.DEVICE_TYPE, allow_incomplete_match=True), self.host, simulator_ui=False)
elif 'device' in self._port.port_name:
raise RuntimeError('Running api tests on {} is not supported'.format(self._port.port_name))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes