Changeset 240356 in webkit


Ignore:
Timestamp:
Jan 23, 2019 1:28:35 PM (5 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Wait longer when launching WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=193734

Reviewed by Aakash Jain.

  • Scripts/webkitpy/port/simulator_process.py:

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

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240352 r240356  
     12019-01-23  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Wait longer when launching WebKitTestRunner
     4        https://bugs.webkit.org/show_bug.cgi?id=193734
     5
     6        Reviewed by Aakash Jain.
     7
     8        * Scripts/webkitpy/port/simulator_process.py:
     9        (SimulatorProcess._start): Increase timeout from 6 seconds to 15 seconds.
     10
    1112019-01-23  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/simulator_process.py

    r224688 r240356  
    1 # Copyright (C) 2017 Apple Inc. All rights reserved.
     1# Copyright (C) 2017-2019 Apple Inc. All rights reserved.
    22#
    33# Redistribution and use in source and binary forms, with or without
     
    9696        self._pid = self._target_host.launch_app(self._bundle_id, self._cmd[1:], env=self._env)
    9797
    98         with Timeout(6, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))):
     98        with Timeout(15, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))):
    9999            stdin = None
    100100            stdout = None
Note: See TracChangeset for help on using the changeset viewer.