blob: a91dd55ae77db3e6e802f02af21ec57704f962b4 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
[ -f testing.sh ] && . testing.sh
#testing "name" "command" "result" "infile" "stdin"
testing "-l HUP" "kill -l HUP" "1\n" "" ""
testing "-l 1" "kill -l 1" "HUP\n" "" ""
|