Title: [239614] trunk/Tools
Revision
239614
Author
[email protected]
Date
2019-01-04 09:58:08 -0800 (Fri, 04 Jan 2019)

Log Message

webkitpy: Increase simulator teardown timeout
https://bugs.webkit.org/show_bug.cgi?id=193141
<rdar://problem/46174217>

Rubber-stamped by Aakash Jain.

* Scripts/webkitpy/xcode/simulated_device.py:
(SimulatedDeviceManager.tear_down): Use SIMULATOR_BOOT_TIMEOUT.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (239613 => 239614)


--- trunk/Tools/ChangeLog	2019-01-04 17:18:17 UTC (rev 239613)
+++ trunk/Tools/ChangeLog	2019-01-04 17:58:08 UTC (rev 239614)
@@ -1,3 +1,14 @@
+2019-01-04  Jonathan Bedard  <[email protected]>
+
+        webkitpy: Increase simulator teardown timeout
+        https://bugs.webkit.org/show_bug.cgi?id=193141
+        <rdar://problem/46174217>
+
+        Rubber-stamped by Aakash Jain.
+
+        * Scripts/webkitpy/xcode/simulated_device.py:
+        (SimulatedDeviceManager.tear_down): Use SIMULATOR_BOOT_TIMEOUT.
+
 2019-01-03  Ross Kirsling  <[email protected]>
 
         test262-runner misbehaves when test file YAML has a trailing space

Modified: trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py (239613 => 239614)


--- trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2019-01-04 17:18:17 UTC (rev 239613)
+++ trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2019-01-04 17:58:08 UTC (rev 239614)
@@ -442,7 +442,7 @@
         SimulatedDeviceManager._wait_until_device_is_usable(device, max(0, deadline - time.time()))
 
     @staticmethod
-    def tear_down(host=SystemHost(), timeout=60):
+    def tear_down(host=SystemHost(), timeout=SIMULATOR_BOOT_TIMEOUT):
         if SimulatedDeviceManager._managing_simulator_app:
             host.executive.run_command(['killall', '-9', 'Simulator'], return_exit_code=True)
             SimulatedDeviceManager._managing_simulator_app = False
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to