xref: /aosp_15_r20/external/toybox/tests/kill.test (revision cf5a6c84e2b8763fc1a7db14496fd4742913b199)
1#!/bin/bash
2
3[ -f testing.sh ] && . testing.sh
4
5#testing "name" "command" "result" "infile" "stdin"
6
7testcmd "-l HUP" "-l HUP" "1\n" "" ""
8testcmd "-l 1" "-l 1" "HUP\n" "" ""
9testcmd "-0 self" "-0 $$ && echo yes" "yes\n" "" ""
10