Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: build/android/pylib/android_commands.py

Issue 14721005: [Testing] Be more aggressive when killing android processes via ADB. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/android_commands.py
diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
index 2fa9d5e0f70975e9d338410ab420eedf61769f0f..526776bc467299fe9b6e7b92fc98420167f6a671 100644
--- a/build/android/pylib/android_commands.py
+++ b/build/android/pylib/android_commands.py
@@ -525,7 +525,7 @@ class AndroidCommands(object):
"""
pids = self.ExtractPid(process)
if pids:
- self.RunShellCommand('kill ' + ' '.join(pids))
+ self.RunShellCommand('kill -9 ' + ' '.join(pids))
return len(pids)
def KillAllBlocking(self, process, timeout_sec):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698