Title: [200515] trunk/Tools
Revision
200515
Author
ryanhad...@apple.com
Date
2016-05-06 12:25:41 -0700 (Fri, 06 May 2016)

Log Message

Increase delay when launching multiple ios-simulators in parallel
https://bugs.webkit.org/show_bug.cgi?id=157422

Reviewed by Alexey Proskuryakov.

Tests are intermittently failing when launching multiple simulators in parallel due to "You are opening
this application for the first time" confirmation dialogs. Increasing the delay to alleviate this issue.

* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort.setup_test_run):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (200514 => 200515)


--- trunk/Tools/ChangeLog	2016-05-06 18:17:24 UTC (rev 200514)
+++ trunk/Tools/ChangeLog	2016-05-06 19:25:41 UTC (rev 200515)
@@ -1,3 +1,16 @@
+2016-05-06  Ryan Haddad  <ryanhad...@apple.com>
+
+        Increase delay when launching multiple ios-simulators in parallel
+        https://bugs.webkit.org/show_bug.cgi?id=157422
+
+        Reviewed by Alexey Proskuryakov.
+
+        Tests are intermittently failing when launching multiple simulators in parallel due to "You are opening
+        this application for the first time" confirmation dialogs. Increasing the delay to alleviate this issue.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSSimulatorPort.setup_test_run):
+
 2016-05-06  Per Arne Vollan  <pe...@outlook.com>
 
         [Win] Remove WinXP support.

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (200514 => 200515)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2016-05-06 18:17:24 UTC (rev 200514)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2016-05-06 19:25:41 UTC (rev 200515)
@@ -232,7 +232,7 @@
                 '--args', '-CurrentDeviceUDID', device_udid])
 
             if mac_os_version in ['elcapitan', 'yosemite', 'mavericks']:
-                time.sleep(2)
+                time.sleep(2.5)
 
         _log.info('Waiting for all iOS Simulators to finish booting.')
         for i in xrange(self.child_processes()):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to