1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

* fix shell unknown command test

This commit is contained in:
Kaspar Schleiser 2010-09-28 17:36:28 +02:00
parent dd523fccd0
commit afeaaed0f2

View File

@ -1,6 +1,6 @@
#!/usr/bin/expect
set timeout 1
set timeout 2
spawn board/msba2/tools/bin/pseudoterm $env(PORT)
@ -13,7 +13,7 @@ expect {
send "some_definately_unknown_command\n"
expect {
"shell: command not found." {}
"shell: command "some_definately_unknown_command" not found." {}
timeout { exit 1 }
}