Title: [248583] trunk/Tools
- Revision
- 248583
- Author
- [email protected]
- Date
- 2019-08-12 16:43:55 -0700 (Mon, 12 Aug 2019)
Log Message
[REGRESSION] run-webkit-tests: No PID defined when searching for simulator crashlogs
https://bugs.webkit.org/show_bug.cgi?id=200644
Reviewed by Aakash Jain.
* Scripts/webkitpy/port/simulator_process.py:
(SimulatorProcess._start): Define system PID after launching app.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (248582 => 248583)
--- trunk/Tools/ChangeLog 2019-08-12 23:43:03 UTC (rev 248582)
+++ trunk/Tools/ChangeLog 2019-08-12 23:43:55 UTC (rev 248583)
@@ -1,3 +1,13 @@
+2019-08-12 Jonathan Bedard <[email protected]>
+
+ [REGRESSION] run-webkit-tests: No PID defined when searching for simulator crashlogs
+ https://bugs.webkit.org/show_bug.cgi?id=200644
+
+ Reviewed by Aakash Jain.
+
+ * Scripts/webkitpy/port/simulator_process.py:
+ (SimulatorProcess._start): Define system PID after launching app.
+
2019-08-12 Sam Weinig <[email protected]>
Replace multiparameter overloads of append() in StringBuilder as a first step toward standardizinging on the flexibleAppend() implementation
Modified: trunk/Tools/Scripts/webkitpy/port/simulator_process.py (248582 => 248583)
--- trunk/Tools/Scripts/webkitpy/port/simulator_process.py 2019-08-12 23:43:03 UTC (rev 248582)
+++ trunk/Tools/Scripts/webkitpy/port/simulator_process.py 2019-08-12 23:43:55 UTC (rev 248583)
@@ -94,6 +94,7 @@
# 3 client connections will be accepted for stdin, stdout and stderr in that order.
self._target_host.listening_socket.listen(3)
self._pid = self._target_host.launch_app(self._bundle_id, self._cmd[1:], env=self._env)
+ self._system_pid = self._pid
with Timeout(15, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))):
stdin = None
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes