mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
82 lines
1.5 KiB
Plaintext
Executable File
82 lines
1.5 KiB
Plaintext
Executable File
#!/usr/bin/expect
|
|
|
|
set timeout 1
|
|
|
|
spawn board/msba2/tools/bin/pseudoterm $env(PORT)
|
|
|
|
sleep 1
|
|
|
|
expect {
|
|
">$" {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "123456789012345678901234567890123456789012345678901234567890\n"
|
|
expect {
|
|
"shell: command not found." {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
|
|
send "start_test\n"
|
|
expect {
|
|
"\[TEST_START\]" {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
expect {
|
|
">$" {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
send "end_test\n"
|
|
|
|
expect {
|
|
"\[TEST_END\]" {}
|
|
timeout { exit 1 }
|
|
}
|
|
|
|
puts "\nTest successful!\n"
|