mirror of
https://github.com/lupyuen/nuttx-ox64.git
synced 2025-01-13 05:08:29 +08:00
15 lines
236 B
Bash
15 lines
236 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 0" { exit 0 }
|
|
timeout { exit 1 }
|
|
}
|