4d8f9522a7
The pwdx check expected error message, which where in use for only
short period of time. The old message was put in place in commit
9d47cb0c38
The vmstat issue was triggered by 'sr0' cdrom device, which gives
following unexpected output. Fix simply ignores partitions which has
zero activity. Besides such partitions probably would not apply as
good candidate of -p option anyway.
$ vmstat -p sr0
Partition was not found
Reported-By: Moritz Muehlenhoff <jmm@debian.org>
Bug-Debian: http://bugs.debian.org/656508
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
21 lines
536 B
Plaintext
21 lines
536 B
Plaintext
|
|
set pwdx "${topdir}pwdx"
|
|
# Run pwdx with no arguments
|
|
set test "pwdx no args"
|
|
spawn $pwdx
|
|
expect_pass "$test" "^\\s*Usage:\\s+\(lt-\)\?pwdx \\\[options\\\] pid\.\.\."
|
|
|
|
# Run pwdx with pid 0 which is invalid
|
|
set test "pwdx pid 0 should be invalid"
|
|
spawn $pwdx 0
|
|
expect_pass "$test" "\(lt-\)\?pwdx\: invalid process id\: 0"
|
|
|
|
# Run pwdx with existing pid
|
|
set test "pwdx finds sleep in cwd"
|
|
set sleep_pid [ exec sleep 600 & ]
|
|
set sleep_pwd [ pwd ]
|
|
spawn $pwdx $sleep_pid
|
|
expect_pass "$test" "^$sleep_pid: $sleep_pwd"
|
|
exec kill $sleep_pid
|
|
|