mirror of
https://github.com/lupyuen/nuttx-ox64.git
synced 2025-01-13 05:08:29 +08:00
11 lines
188 B
Bash
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
|