nuttx-ox64/expect.sh
2024-01-24 23:17:54 +08:00

11 lines
188 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"
expect "ostest_main: Exiting with status 0"
exit 1