Index: tools/task_kill.py |
diff --git a/tools/task_kill.py b/tools/task_kill.py |
index 247caaba4fc1a01aa6e60a4b3fd8be78e1711850..3ccf1c75f4eb357dcf0f53217bf89c5c57ee3e2e 100755 |
--- a/tools/task_kill.py |
+++ b/tools/task_kill.py |
@@ -215,7 +215,12 @@ def KillBrowsers(): |
status += Kill('chrome_helper') |
status += Kill('iexplore') |
status += Kill('safari') |
- status += Kill('content_shell') |
+ if os_name == "win32": |
+ # TODO(29599): Let content_shell affect exit code on windows, |
+ # once issue with zombie renderers is fixed. |
+ Kill('content_shell') |
+ else: |
+ status += Kill('content_shell') |
return status |
def KillVCSystems(): |