Title: [212309] trunk/Tools
Revision
212309
Author
jbed...@apple.com
Date
2017-02-14 11:09:11 -0800 (Tue, 14 Feb 2017)

Log Message

Unreviewed build-fix after r212297.

* Scripts/webkitpy/port/simulator_process.py:
(SimulatorProcess.stop): Should return value of the ServerProcess's stop.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (212308 => 212309)


--- trunk/Tools/ChangeLog	2017-02-14 18:52:31 UTC (rev 212308)
+++ trunk/Tools/ChangeLog	2017-02-14 19:09:11 UTC (rev 212309)
@@ -1,3 +1,10 @@
+2017-02-14  Jonathan Bedard  <jbed...@apple.com>
+
+        Unreviewed build-fix after r212297.
+
+        * Scripts/webkitpy/port/simulator_process.py:
+        (SimulatorProcess.stop): Should return value of the ServerProcess's stop.
+
 2017-02-14  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
         [CMake] build-webkit should allow building with the default cmake configuration

Modified: trunk/Tools/Scripts/webkitpy/port/simulator_process.py (212308 => 212309)


--- trunk/Tools/Scripts/webkitpy/port/simulator_process.py	2017-02-14 18:52:31 UTC (rev 212308)
+++ trunk/Tools/Scripts/webkitpy/port/simulator_process.py	2017-02-14 19:09:11 UTC (rev 212309)
@@ -135,4 +135,4 @@
         except OSError as err:
             assert err.errno == errno.ESRCH
             pass
-        super(SimulatorProcess, self).stop(timeout_secs)
+        return super(SimulatorProcess, self).stop(timeout_secs)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to