summaryrefslogtreecommitdiff
path: root/testsuite/ps.test/ps_personality.exp
blob: 74b163f87011c82bc3d80c26bb12b48c28c0a603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}