nuttx-ox64/expect.sh
2024-01-24 23:41:47 +08:00

16 lines
244 B
Bash

#!/usr/bin/expect
set send_slow {1 0.001}
spawn ./temu nuttx.cfg
expect "nsh> "
send -s "uname -a\r"
expect "nsh> "
send -s "ostest\r"
set timeout 120
expect {
"ostest_main: Exiting with status -1" { exit 0 }
timeout { exit 1 }
}
exit 2