Changeset 173514 in webkit
- Timestamp:
- Sep 11, 2014, 9:12:02 AM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/common/system/executive.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r173511 r173514 1 2014-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 1 14 2014-09-11 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com> 2 15 -
trunk/Tools/Scripts/webkitpy/common/system/executive.py
r151191 r173514 188 188 # is a CYGWIN pid and taskkill.exe expects a windows pid. 189 189 # Thankfully os.kill on CYGWIN handles either pid type. 190 command = ["taskkill.exe", "/f", "/ pid", pid]190 command = ["taskkill.exe", "/f", "/t", "/pid", pid] 191 191 # taskkill will exit 128 if the process is not found. We should log. 192 192 self.run_command(command, error_handler=self.ignore_error)
Note:
See TracChangeset
for help on using the changeset viewer.