shadow/tests/expiry/07_expiry_-c_expired_account/expiry.exp
Serge Hallyn 8728bd87ed tests: print default timeout message to stderr
Signed-off-by: Serge Hallyn <serge@hallyn.com>
2023-02-09 09:55:04 -06:00

18 lines
286 B
Plaintext
Executable File

#!/usr/bin/expect
set timeout 2
expect_after default {puts stderr "\nFAIL"; exit 1}
spawn /bin/sh
send "if \[ \$(id -u) -eq 0 \]; then PS1='# '; else PS1='$ '; fi\r"
expect "# "
send "expiry -c\r"
expect "# "
send "echo \$?\r"
expect "3"
expect "# "
send "exit\r"
puts "OK\n"
exit 0