Title: [240356] trunk/Tools
Revision
240356
Author
[email protected]
Date
2019-01-23 13:28:35 -0800 (Wed, 23 Jan 2019)

Log Message

webkitpy: Wait longer when launching WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=193734

Reviewed by Aakash Jain.

* Scripts/webkitpy/port/simulator_process.py:
(SimulatorProcess._start): Increase timeout from 6 seconds to 15 seconds.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240355 => 240356)


--- trunk/Tools/ChangeLog	2019-01-23 21:03:32 UTC (rev 240355)
+++ trunk/Tools/ChangeLog	2019-01-23 21:28:35 UTC (rev 240356)
@@ -1,3 +1,13 @@
+2019-01-23  Jonathan Bedard  <[email protected]>
+
+        webkitpy: Wait longer when launching WebKitTestRunner
+        https://bugs.webkit.org/show_bug.cgi?id=193734
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/webkitpy/port/simulator_process.py:
+        (SimulatorProcess._start): Increase timeout from 6 seconds to 15 seconds.
+
 2019-01-23  Wenson Hsieh  <[email protected]>
 
         [iOS] fast/events/touch/ios/hover-when-style-change-is-async.html times out

Modified: trunk/Tools/Scripts/webkitpy/port/simulator_process.py (240355 => 240356)


--- trunk/Tools/Scripts/webkitpy/port/simulator_process.py	2019-01-23 21:03:32 UTC (rev 240355)
+++ trunk/Tools/Scripts/webkitpy/port/simulator_process.py	2019-01-23 21:28:35 UTC (rev 240356)
@@ -1,4 +1,4 @@
-# Copyright (C) 2017 Apple Inc. All rights reserved.
+# Copyright (C) 2017-2019 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
@@ -95,7 +95,7 @@
         self._target_host.listening_socket.listen(3)
         self._pid = self._target_host.launch_app(self._bundle_id, self._cmd[1:], env=self._env)
 
-        with Timeout(6, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))):
+        with Timeout(15, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))):
             stdin = None
             stdout = None
             stderr = None
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to