procps/testsuite/pwdx.test/pwdx.exp

23 lines
524 B
Plaintext
Raw Normal View History

2011-11-23 16:14:51 +05:30
make_testproc
2011-11-23 17:18:49 +05:30
set pwdx "${topdir}pwdx"
2011-11-23 16:14:51 +05:30
# Run pwdx with no arguments
set test "pwdx no args"
2011-11-30 17:41:35 +05:30
spawn $pwdx
expect_pass "$test" "^\\s*Usage:\\s+\(lt-\)\?pwdx \\\[options\\\] pid\.\.\."
2011-11-23 16:14:51 +05:30
# 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"
2011-11-23 16:14:51 +05:30
# Run pwdx with existing pid
set test "pwdx find test process cwd"
set my_pwd [ pwd ]
spawn $pwdx $testproc1_pid
expect_pass "$test" "^$testproc1_pid: $my_pwd"
2011-11-23 16:14:51 +05:30
# Cleanup
kill_testproc