Title: [240151] trunk/Tools
Revision
240151
Author
jbed...@apple.com
Date
2019-01-18 08:54:23 -0800 (Fri, 18 Jan 2019)

Log 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.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240150 => 240151)


--- trunk/Tools/ChangeLog	2019-01-18 16:37:59 UTC (rev 240150)
+++ trunk/Tools/ChangeLog	2019-01-18 16:54:23 UTC (rev 240151)
@@ -1,5 +1,16 @@
 2019-01-18  Jonathan Bedard  <jbed...@apple.com>
 
+        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-01-18  Jonathan Bedard  <jbed...@apple.com>
+
         webkitpy: Implement device type specific expected results (Part 2)
         https://bugs.webkit.org/show_bug.cgi?id=192162
         <rdar://problem/46345449>

Modified: trunk/Tools/Scripts/webkitpy/api_tests/manager.py (240150 => 240151)


--- trunk/Tools/Scripts/webkitpy/api_tests/manager.py	2019-01-18 16:37:59 UTC (rev 240150)
+++ trunk/Tools/Scripts/webkitpy/api_tests/manager.py	2019-01-18 16:54:23 UTC (rev 240151)
@@ -128,7 +128,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
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to