Disable taskkill failure when killing dart processes on windows.

There is an outstanding issue with pub hanging and being unkillable on
windows.  Make the taskkill step pass on windows, even if there are
dart processes, until we fix this issue.

BUG=https://github.com/dart-lang/sdk/issues/24086
R=kustermann@google.com

Review URL: https://codereview.chromium.org/1582773002 .
This commit is contained in:
William Hesse 2016-01-13 11:17:18 +01:00
parent 8741a8dcda
commit cd21da1d98

View file

@ -206,7 +206,11 @@ def Main():
options = GetOptions()
status = 0
if options.kill_dart:
status += KillDart()
if os_name == "win32":
# TODO(24086): Add result of KillDart into status once pub hang is fixed.
KillDart()
else:
status += KillDart()
if options.kill_fletch:
status += KillFletch()
if options.kill_vc: