Changeset 214896 in webkit
- Timestamp:
- Apr 4, 2017, 2:08:43 PM (8 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r214893 r214896 1 2017-04-04 Jonathan Bedard <jbedard@apple.com> 2 3 Increase timeouts for simulator testing 4 5 Unreviewed infrastructure fix. 6 7 * Scripts/webkitpy/port/simulator_process.py: 8 (SimulatorProcess._start): Increase timeout from 3 to 6 seconds. 9 * Scripts/webkitpy/xcode/simulated_device.py: 10 (SimulatedDevice.install_app): Increase timeout from 1 to 3 seconds. 11 1 12 2017-04-04 Tim Horton <timothy_horton@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/port/simulator_process.py
r214705 r214896 97 97 raise Exception('Timed out waiting for process to connect at port {}'.format(self._target_host.listening_port())) 98 98 signal.signal(signal.SIGALRM, handler) 99 signal.alarm( 3) # In seconds99 signal.alarm(6) # In seconds 100 100 101 101 stdin = None -
trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py
r214565 r214896 151 151 self._host.filesystem.join(app_path, 'Info.plist'), 152 152 ]).rstrip() 153 self._host.executive.kill_process(self.launch_app(bundle_id, [], env=env, timeout= 1))153 self._host.executive.kill_process(self.launch_app(bundle_id, [], env=env, timeout=3)) 154 154 return True 155 155 except RuntimeError:
Note:
See TracChangeset
for help on using the changeset viewer.