Title: [283429] trunk/Tools
Revision
283429
Author
jbed...@apple.com
Date
2021-10-01 18:04:26 -0700 (Fri, 01 Oct 2021)

Log Message

[webkitpy] Add a delay between successive iOS simulator boots (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=226376

Unreviewed infrastrucutre fix.


* Scripts/webkitpy/xcode/simulated_device.py:
(SimulatedDeviceManager._boot_device): Increase delay to support iOS 15.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (283428 => 283429)


--- trunk/Tools/ChangeLog	2021-10-02 00:53:30 UTC (rev 283428)
+++ trunk/Tools/ChangeLog	2021-10-02 01:04:26 UTC (rev 283429)
@@ -1,5 +1,15 @@
 2021-10-01  Jonathan Bedard  <jbed...@apple.com>
 
+        [webkitpy] Add a delay between successive iOS simulator boots (Follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=226376
+
+        Unreviewed infrastrucutre fix.
+
+        * Scripts/webkitpy/xcode/simulated_device.py:
+        (SimulatedDeviceManager._boot_device): Increase delay to support iOS 15.
+
+2021-10-01  Jonathan Bedard  <jbed...@apple.com>
+
         [webkitscmpy] Get pull-request by number
         https://bugs.webkit.org/show_bug.cgi?id=231039
         <rdar://problem/83740215>

Modified: trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py (283428 => 283429)


--- trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2021-10-02 00:53:30 UTC (rev 283428)
+++ trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2021-10-02 01:04:26 UTC (rev 283429)
@@ -367,7 +367,7 @@
         host.executive.run_command([SimulatedDeviceManager.xcrun, 'simctl', 'boot', device.udid])
         SimulatedDeviceManager.INITIALIZED_DEVICES.append(device)
         # FIXME: Remove this delay once rdar://77234240 is resolved.
-        time.sleep(10)
+        time.sleep(15)
 
     @staticmethod
     def device_count_for_type(device_type, host=None, use_booted_simulator=True, **kwargs):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to