blob: fae07f3f20b09f23f691ee2cc67094b01cb398eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
set test "backtrace"
if {![installtest_p]} { untested $test; return }
setup_xfail 6961 "*-*-*"
set ok 0
set ok2 0
spawn stap $srcdir/$subdir/backtrace.stp
expect {
-timeout 30
-re {^[^\r\n ]*\r\n} { incr ok; exp_continue }
-re {^ [^\r\n]*\r\n} { incr ok2; exp_continue }
eof { }
timeout { fail "$test (timeout)" }
}
catch { close }; wait
if {$ok == 3 && $ok2 >= $ok} then { pass "$test ($ok $ok2)" } else { fail "$test ($ok $ok2)" }
set test "backtrace-unwindsyms"
setup_xfail 6961 "*-*-*"
set ok 0
set ok2 0
spawn stap $srcdir/$subdir/backtrace.stp -d kernel
expect {
-timeout 30
-re {^[^\r\n ]*\r\n} { incr ok; exp_continue }
-re {^ [^\r\n]*\r\n} { incr ok2; exp_continue }
eof { }
timeout { fail "$test (timeout)" }
}
catch { close }; wait
if {$ok == 3 && $ok2 >= $ok} then { pass "$test ($ok $ok2)" } else { fail "$test ($ok $ok2)" }
|