Title: [172115] trunk/Tools
Revision
172115
Author
dfar...@apple.com
Date
2014-08-05 18:07:09 -0700 (Tue, 05 Aug 2014)

Log Message

[iOS] simctl can hang if run quickly after shutting down CoreSimulator services
https://bugs.webkit.org/show_bug.cgi?id=135626

Reviewed by Dan Bernstein.

* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort.setup_test_run):
Remove call to simctl shutdown <device> - telling the simulator app to quit
will shut down all booted devices.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (172114 => 172115)


--- trunk/Tools/ChangeLog	2014-08-06 01:06:02 UTC (rev 172114)
+++ trunk/Tools/ChangeLog	2014-08-06 01:07:09 UTC (rev 172115)
@@ -1,3 +1,15 @@
+2014-08-05  David Farler  <dfar...@apple.com>
+
+        [iOS] simctl can hang if run quickly after shutting down CoreSimulator services
+        https://bugs.webkit.org/show_bug.cgi?id=135626
+
+        Reviewed by Dan Bernstein.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSSimulatorPort.setup_test_run):
+        Remove call to simctl shutdown <device> - telling the simulator app to quit
+        will shut down all booted devices.
+
 2014-08-05  Alexey Proskuryakov  <a...@apple.com>
 
         Remove an unused argument from BuildbotQueue.update()

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (172114 => 172115)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2014-08-06 01:06:02 UTC (rev 172114)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2014-08-06 01:07:09 UTC (rev 172115)
@@ -186,7 +186,6 @@
 
     def setup_test_run(self):
         self._executive.run_command(['osascript', '-e', 'tell application "iOS Simulator" to quit'])
-        self._executive.run_command([self.xcrun_find('simctl'), 'shutdown', self.simulator_udid()], error_handler=lambda e: None)
 
     def clean_up_test_run(self):
         super(IOSSimulatorPort, self).clean_up_test_run()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to