<rdar://problem/
31478107>
Unreviewed infrastructure fix.
* Scripts/webkitpy/xcode/simulated_device.py:
(SimulatedDevice.launch_app._install_timeout): Raise RuntimeError, not Exception.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@215039
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2017-04-06 Jonathan Bedard <jbedard@apple.com>
+
+ REGRESSION: Simulators failing to install after launch_app times out
+ <rdar://problem/31478107>
+
+ Unreviewed infrastructure fix.
+
+ * Scripts/webkitpy/xcode/simulated_device.py:
+ (SimulatedDevice.launch_app._install_timeout): Raise RuntimeError, not Exception.
+
2017-04-05 Joseph Pecoraro <pecoraro@apple.com>
test262: module test progressions need updated expectations (@@iterator changes)
def _install_timeout(signum, frame):
assert signum == signal.SIGALRM
- raise Exception('Timed out waiting for process to open {} on {}'.format(bundle_id, self.udid))
+ raise RuntimeError('Timed out waiting for process to open {} on {}'.format(bundle_id, self.udid))
output = None
signal.signal(signal.SIGALRM, _install_timeout)