summaryrefslogtreecommitdiffstats
path: root/tools/cr
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2016-02-16 07:49:54 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-16 15:51:13 +0000
commit977dffef8fe5b4babe9209417286ab624b7c700b (patch)
tree95af00a940e60fc6198dafea62d53ebf76a6234f /tools/cr
parente782a76f147e8f1cef0892ebdbd05e58c9c34f97 (diff)
downloadchromium_src-977dffef8fe5b4babe9209417286ab624b7c700b.zip
chromium_src-977dffef8fe5b4babe9209417286ab624b7c700b.tar.gz
chromium_src-977dffef8fe5b4babe9209417286ab624b7c700b.tar.bz2
cr: Remove message about 'kill' command not being implemented on Linux
The kill command isn't needed on Linux because the target generally runs in the same shell and can be killed with Ctrl-C. Review URL: https://codereview.chromium.org/1700123002 Cr-Commit-Position: refs/heads/master@{#375582}
Diffstat (limited to 'tools/cr')
-rw-r--r--tools/cr/cr/actions/linux.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/cr/cr/actions/linux.py b/tools/cr/cr/actions/linux.py
index 0e869ee..8e670e3 100644
--- a/tools/cr/cr/actions/linux.py
+++ b/tools/cr/cr/actions/linux.py
@@ -18,8 +18,9 @@ class LinuxRunner(cr.Runner):
return cr.LinuxPlatform.GetInstance().is_active
def Kill(self, targets, arguments):
- # TODO(iancottrell): Think about how to implement this, or even if we should
- print '**WARNING** Kill not yet implemented on linux'
+ # Not needed on Linux because the target generally runs in the same shell
+ # and can be killed using Ctrl-C.
+ pass
def Run(self, target, arguments):
with target: