Title: [214565] trunk/Tools
Revision
214565
Author
jbed...@apple.com
Date
2017-03-29 15:10:25 -0700 (Wed, 29 Mar 2017)

Log Message

Simulator testing stops after the first crash
<rdar://problem/31325362>

Unreviewed infrastructure fix.

* Scripts/webkitpy/xcode/simulated_device.py:
(SimulatedDevice):
(SimulatedDevice.launch_app): Increase timeout when attempting to launch app.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (214564 => 214565)


--- trunk/Tools/ChangeLog	2017-03-29 22:01:11 UTC (rev 214564)
+++ trunk/Tools/ChangeLog	2017-03-29 22:10:25 UTC (rev 214565)
@@ -1,5 +1,16 @@
 2017-03-29  Jonathan Bedard  <jbed...@apple.com>
 
+        Simulator testing stops after the first crash
+        <rdar://problem/31325362>
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitpy/xcode/simulated_device.py:
+        (SimulatedDevice):
+        (SimulatedDevice.launch_app): Increase timeout when attempting to launch app.
+
+2017-03-29  Jonathan Bedard  <jbed...@apple.com>
+
         webkitpy: Standardize web-server port definitions
         https://bugs.webkit.org/show_bug.cgi?id=170144
         <rdar://problem/31284026>

Modified: trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py (214564 => 214565)


--- trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2017-03-29 22:01:11 UTC (rev 214564)
+++ trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py	2017-03-29 22:10:25 UTC (rev 214565)
@@ -156,7 +156,8 @@
                 pass
         return False
 
-    def launch_app(self, bundle_id, args, env=None, timeout=10):
+    # FIXME: Increase timeout for <rdar://problem/31331576>
+    def launch_app(self, bundle_id, args, env=None, timeout=300):
         environment_to_use = {}
         SIMCTL_ENV_PREFIX = 'SIMCTL_CHILD_'
         for value in (env or {}):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to