2011-11-27 10:00:04 +05:30
|
|
|
#
|
|
|
|
# Dejagnu tests for pgrep - part of procps
|
|
|
|
#
|
|
|
|
set mypid [pid]
|
|
|
|
set not_ppid [ expr { $mypid + 1 } ]
|
|
|
|
set pgrep "${topdir}pgrep"
|
|
|
|
set uid [ exec id -u ]
|
|
|
|
set not_uid [ expr { $uid + 1 } ]
|
|
|
|
set gid [ exec id -g ]
|
|
|
|
set not_gid [ expr { $gid + 1 } ]
|
2012-06-28 02:51:50 +05:30
|
|
|
set ps "${topdir}ps/pscommand"
|
2015-05-09 13:18:12 +05:30
|
|
|
set tty [ get_tty ]
|
2011-11-27 10:00:04 +05:30
|
|
|
|
2013-10-09 13:48:55 +05:30
|
|
|
set test "pgprep with no arguments"
|
|
|
|
spawn $pgrep
|
|
|
|
expect_pass "$test" "^\(lt-\)\?pgrep: no matching criteria specified\\s*"
|
|
|
|
|
2011-11-30 17:41:35 +05:30
|
|
|
make_testproc
|
|
|
|
|
|
|
|
set testproc_len [ string length $testproc_comm ]
|
|
|
|
set testproc_trim [ string range $testproc_comm 0 [ expr { $testproc_len - 2 } ] ]
|
2012-06-28 02:51:50 +05:30
|
|
|
set testproc1_sid [ string trim [ exec $ps --no-headers -o sid $testproc1_pid ] ]
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep find both test pids"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
# In Debian only
|
2015-06-13 10:34:31 +05:30
|
|
|
set test "pgrep counts 2 test pids"
|
|
|
|
spawn $pgrep -c $testproc_comm
|
|
|
|
expect_pass "$test" "^2\\s*"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep with : delimiter"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -d : $testproc_comm
|
|
|
|
expect_pass "$test" "^${testproc1_pid}:${testproc2_pid}\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
# FIXME - Need to test against -f flag
|
2011-11-29 17:25:03 +05:30
|
|
|
set test "pgrep match against full process name"
|
|
|
|
untested $test
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep with matching gid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -G $gid $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep with not matching gid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -G $not_gid $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank $test
|
|
|
|
|
|
|
|
set test "pgrep with process name"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -l $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc_comm\\s+$testproc2_pid\\s+$testproc_comm\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
2012-08-18 05:50:27 +05:30
|
|
|
set test "pgrep with full command line"
|
|
|
|
spawn $pgrep -a $testproc_comm
|
2015-06-13 10:34:31 +05:30
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc_path\\s+$testproc2_pid\\s+$testproc_path\\s*$"
|
2012-08-18 05:50:27 +05:30
|
|
|
|
2011-11-27 10:00:04 +05:30
|
|
|
set test "pgrep find newest test pid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -n $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep find oldest test pid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -o $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep matches with parent pid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -P $mypid $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep doesn't match with bogus parent pid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -P $not_ppid $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank "$test"
|
|
|
|
|
|
|
|
set test "pgrep matches with its own sid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -s $testproc1_sid $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep doesn't match with bogus sid"
|
2015-05-09 13:23:08 +05:30
|
|
|
spawn $pgrep -s -1 $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank "$test"
|
|
|
|
|
|
|
|
set test "pgrep matches on tty"
|
2015-05-09 13:18:12 +05:30
|
|
|
if { $tty == "" } {
|
|
|
|
untested "$test"
|
|
|
|
} else {
|
|
|
|
spawn $pgrep -t $tty $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
|
|
|
}
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep doesn't match with bogus tty"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -t glass $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank "$test"
|
|
|
|
|
|
|
|
set test "pgrep with matching euid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -u $uid $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep with not matching euid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -u $not_uid $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank $test
|
|
|
|
|
|
|
|
set test "pgrep with matching uid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -U $uid $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep with not matching uid"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -U $not_uid $testproc_comm
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank $test
|
|
|
|
|
|
|
|
set test "pgrep matches on substring"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep $testproc_trim
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep matches full string with exact"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -x $testproc_comm
|
|
|
|
expect_pass "$test" "^$testproc1_pid\\s+$testproc2_pid\\s*$"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
set test "pgrep does not match substring with exact"
|
2011-11-30 17:41:35 +05:30
|
|
|
spawn $pgrep -x $testproc_trim
|
2011-11-27 10:00:04 +05:30
|
|
|
expect_blank $test
|
|
|
|
|
2017-01-26 11:22:23 +05:30
|
|
|
set test "pgrep with long non-matching pattern gives warning"
|
2016-09-11 06:10:47 +05:30
|
|
|
spawn $pgrep gnome-session-bi
|
2017-01-26 11:22:23 +05:30
|
|
|
expect_pass "$test" "pattern that searches for process name longer than 15 characters will result in zero matches"
|
2011-11-27 10:00:04 +05:30
|
|
|
|
|
|
|
# Cleanup
|
2014-07-01 14:21:21 +05:30
|
|
|
kill_testproc
|