⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 283429 in webkit


Ignore:
Timestamp:
Oct 1, 2021, 6:04:26 PM (5 years ago)
Author:
Jonathan Bedard
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r283428 r283429  
     12021-10-01  Jonathan Bedard  <jbedard@apple.com>
     2
     3        [webkitpy] Add a delay between successive iOS simulator boots (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=226376
     5
     6        Unreviewed infrastrucutre fix.
     7
     8        * Scripts/webkitpy/xcode/simulated_device.py:
     9        (SimulatedDeviceManager._boot_device): Increase delay to support iOS 15.
     10
    1112021-10-01  Jonathan Bedard  <jbedard@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py

    r283126 r283429  
    368368        SimulatedDeviceManager.INITIALIZED_DEVICES.append(device)
    369369        # FIXME: Remove this delay once rdar://77234240 is resolved.
    370         time.sleep(10)
     370        time.sleep(15)
    371371
    372372    @staticmethod
Note: See TracChangeset for help on using the changeset viewer.