1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00
RIOT/tests/test_shell/tests/02-unknown-command

22 lines
264 B
Plaintext
Executable File

#!/usr/bin/expect
set timeout 2
spawn make term
sleep 1
send "\n"
send "\n"
expect {
">" {}
timeout { exit 1 }
}
send "some_definately_unknown_command\n"
expect {
"shell: command not found." {}
timeout { exit 1 }
}
puts "\nTest successful!\n"