⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243936 in webkit


Ignore:
Timestamp:
Apr 5, 2019, 10:14:23 AM (7 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Don't run subsequent rounds if interrupted
https://bugs.webkit.org/show_bug.cgi?id=196646

Reviewed by Aakash Jain.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager.run): Bail out if interrupted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r243935 r243936  
     12019-04-05  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Don't run subsequent rounds if interrupted
     4        https://bugs.webkit.org/show_bug.cgi?id=196646
     5
     6        Reviewed by Aakash Jain.
     7
     8        * Scripts/webkitpy/layout_tests/controllers/manager.py:
     9        (Manager.run): Bail out if interrupted.
     10
    1112019-04-05  Sihui Liu  <sihui_liu@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r243842 r243936  
    291291            enabled_pixel_tests_in_retry |= temp_enabled_pixel_tests_in_retry
    292292
     293            if (initial_results and (initial_results.interrupted or initial_results.keyboard_interrupted)) or \
     294                    (retry_results and (retry_results.interrupted or retry_results.keyboard_interrupted)):
     295                break
     296
    293297        # Used for final logging, max_child_processes_for_run is most relevant here.
    294298        self._options.child_processes = max_child_processes_for_run
Note: See TracChangeset for help on using the changeset viewer.