diff options
Diffstat (limited to 'testsuite/ps.test/ps_personality.exp')
-rw-r--r-- | testsuite/ps.test/ps_personality.exp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/ps.test/ps_personality.exp b/testsuite/ps.test/ps_personality.exp new file mode 100644 index 0000000..f873a19 --- /dev/null +++ b/testsuite/ps.test/ps_personality.exp @@ -0,0 +1,18 @@ +# +# check the ps personalities +# +set ps ${topdir}src/ps/pscommand + +set pers_match { + bsd "\\s+PID\\s+TTY\\s+STAT\\s+TIME\\s+COMMAND\\r" + linux "\\s+PID\\s+TTY\\s+TIME\\s+CMD\\r" + old "\\s+PID\\s+TTY\\s+STAT\\s+TIME\\s+COMMAND\\r" + } + +foreach { pers match } $pers_match { + set test "ps with $pers personality" + set env(PS_PERSONALITY) $pers + spawn $ps + expect_pass "$test" $match +} + |