blob: e0abcc4a83a19af841e3f4fa0f19adedc1c25d37 [file] [log] [blame]
#!/usr/bin/expect
set timeout 60;
spawn ./app
expect {
"Returned to client successfully!" {
exit 0;
}
timeout { exit 1; }
}
exit 2;