blob: ab748890e9da9b193ab1e45c8603ed41488a70c1 [file] [log] [blame]
#!/usr/bin/expect
set timeout 60;
spawn ./app
expect {
"Hello world from server" {
exit 0;
}
timeout { exit 1; }
}
exit 0;