blob: 5484003c039adccd0e7ab4a6c933b0646fb52190 (
plain)
1
2
3
4
5
6
7
8
9
|
set test "optionalprobe"
spawn stap -p2 -w $srcdir/$subdir/$test.stp
expect {
-timeout 60
-re "# probes\r\n" { exp_continue }
-re "^begin" { pass $test }
eof { fail $test }
timeout { fail "$test unexpected timeout" }
}
|