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

Changeset 173514 in webkit


Ignore:
Timestamp:
Sep 11, 2014, 9:12:02 AM (12 years ago)
Author:
Brent Fulgham
Message:

Blink merge: Speculative fix for windows run-webkit-tests hangs
​https://bugs.webkit.org/show_bug.cgi?id=136727

Reviewed by Csaba Osztrogonác.

Merged from Blink (patch by Dirk Pranke):
<​https://chromium.googlesource.com/chromium/blink/+/0cdd98d44a20c3951562ccf8b08b1fefba8dac67%5E%21/#F0>

  • Scripts/webkitpy/common/system/executive.py:

(Executive.kill_process):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r173511 r173514  
     12014-09-10  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Blink merge: Speculative fix for windows run-webkit-tests hangs
     4        https://bugs.webkit.org/show_bug.cgi?id=136727
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Merged from Blink (patch by Dirk Pranke):
     9        <https://chromium.googlesource.com/chromium/blink/+/0cdd98d44a20c3951562ccf8b08b1fefba8dac67%5E%21/#F0>
     10
     11        * Scripts/webkitpy/common/system/executive.py:
     12        (Executive.kill_process):
     13
    1142014-09-11  Eva Balazsfalvi  <evab.u-szeged@partner.samsung.com>
    215
  • trunk/Tools/Scripts/webkitpy/common/system/executive.py

    r151191 r173514  
    188188            # is a CYGWIN pid and taskkill.exe expects a windows pid.
    189189            # Thankfully os.kill on CYGWIN handles either pid type.
    190             command = ["taskkill.exe", "/f", "/pid", pid]
     190            command = ["taskkill.exe", "/f", "/t", "/pid", pid]
    191191            # taskkill will exit 128 if the process is not found.  We should log.
    192192            self.run_command(command, error_handler=self.ignore_error)
Note: See TracChangeset for help on using the changeset viewer.