Changeset 214896 in webkit


Ignore:
Timestamp:
Apr 4, 2017, 2:08:43 PM (8 years ago)
Author:
Jonathan Bedard
Message:

Increase timeouts for simulator testing

Unreviewed infrastructure fix.

  • Scripts/webkitpy/port/simulator_process.py:

(SimulatorProcess._start): Increase timeout from 3 to 6 seconds.

  • Scripts/webkitpy/xcode/simulated_device.py:

(SimulatedDevice.install_app): Increase timeout from 1 to 3 seconds.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r214893 r214896  
     12017-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
    1122017-04-04  Tim Horton  <timothy_horton@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/simulator_process.py

    r214705 r214896  
    9797            raise Exception('Timed out waiting for process to connect at port {}'.format(self._target_host.listening_port()))
    9898        signal.signal(signal.SIGALRM, handler)
    99         signal.alarm(3)  # In seconds
     99        signal.alarm(6)  # In seconds
    100100
    101101        stdin = None
  • trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py

    r214565 r214896  
    151151                    self._host.filesystem.join(app_path, 'Info.plist'),
    152152                ]).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))
    154154                return True
    155155            except RuntimeError:
Note: See TracChangeset for help on using the changeset viewer.