2011-11-30 17:41:35 +05:30
#
# Dejagnu testsuite for kill - part of procps
#
set kill ${topdir}kill
2013-05-26 02:55:55 +05:30
if { ![ file exists $kill ] } {
untested { skipping (not build)}
return
}
2011-11-30 17:41:35 +05:30
set test "kill with no arguments"
spawn $kill
2012-01-02 12:09:41 +05:30
expect_pass "$test" "Usage:\\s+\(lt-\)?kill \\\[options\\\] <pid> \\\[...\\\]\\s+Options:\\s+<pid> \\\[...\\\]\\s+send signal to every <pid> listed\\s+-<signal>, -s, --signal <signal>\\s+specify the <signal> to be sent\\s+-l, --list=\\\[<signal>\\\]\\s+list all signal names, or convert one to a name\\\s+-L, --table\\s+list all signal names in a nice table$usage_help$usage_version$usage_man"
2011-11-30 17:41:35 +05:30
set test "kill list signal names"
spawn $kill -l
2016-01-03 12:50:45 +05:30
expect_pass "$test" "^\(\[A-Z12+-\]\\s*\)+$"
2011-11-30 17:41:35 +05:30
set test "kill list signal names in table"
spawn $kill -L
2016-01-03 12:50:45 +05:30
expect_pass "$test" "^\(\\s+\\d+ \[A-Z12+-\]+\)+\\s*$"
2011-11-30 17:41:35 +05:30
2017-02-07 16:35:18 +05:30
set test "kill convert signal name to number no space"
2012-01-02 12:09:41 +05:30
spawn $kill -lHUP
2011-11-30 17:41:35 +05:30
expect_pass "$test" "^1\\s*"
2017-02-07 16:35:18 +05:30
set test "kill convert signal name to number with space"
spawn $kill -l HUP
expect_pass "$test" "^1\\s*"
set test "kill convert SIG-prefixed signal name to number no space"
2016-09-08 12:02:43 +05:30
spawn $kill -lSIGHUP
expect_pass "$test" "^1\\s*$"
2017-02-07 16:35:18 +05:30
set test "kill convert SIG-prefixed signal name to number with space"
spawn $kill -l SIGHUP
expect_pass "$test" "^1\\s*$"
set test "kill convert signal number to name no space"
spawn $kill -l1
expect_pass "$test" "^HUP\\s*"
set test "kill convert signal number to name with space"
2011-11-30 17:41:35 +05:30
spawn $kill -l 1
expect_pass "$test" "^HUP\\s*"
2011-12-03 19:20:36 +05:30
#set test "kill numbered process"
#make_testproc
#if { [ file isdirectory "/proc/$testproc1_pid" ] && [ file isdirectory "/proc/$testproc2_pid" ] } {
#} else {
# perror "Could not start test processes"
#}
#exec $kill -KILL $testproc1_pid
#wait
#if { [ file exists "/proc/$testproc1_pid" ] } {
# exec kill $testproc2_pid
# fail "$test (proc 1 exists)"
#} else {
# exec $kill -KILL $testproc2_pid
# wait
# if { [ file exists "/proc/$testproc2_pid" ] } {
# exec kill $testproc2_pid
# fail "$test (proc 2 exists)"
# } else {
# pass "$test"
# }
#}
2011-12-03 20:23:47 +05:30
## Cleanup
#exec rm $testproc_path