diff options
author | Rob Landley <rob@landley.net> | 2019-06-22 21:35:51 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-06-22 21:35:51 -0500 |
commit | 525c084a6d6828f758b1260582110435f4a35b27 (patch) | |
tree | dc2911fab3d3181d8d3530cd1845613a2d85b248 | |
parent | 26adf95057c5ee9819203b18c7dc3714ed91bdb9 (diff) | |
download | toybox-525c084a6d6828f758b1260582110435f4a35b27.tar.gz |
Don't test shell builtin for kill.
-rw-r--r-- | tests/kill.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/kill.test b/tests/kill.test index a91dd55a..ce423412 100644 --- a/tests/kill.test +++ b/tests/kill.test @@ -4,5 +4,5 @@ #testing "name" "command" "result" "infile" "stdin" -testing "-l HUP" "kill -l HUP" "1\n" "" "" -testing "-l 1" "kill -l 1" "HUP\n" "" "" +testcmd "-l HUP" "-l HUP" "1\n" "" "" +testcmd "-l 1" "-l 1" "HUP\n" "" "" |