blob: 5ccde188d5b56634660a2047ca7fcb7f53efdfac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# function to test error handling when reading nonexistent pmap elements
set test "ix_clear3"
if {![installtest_p]} { untested $test; return }
set pass_result {*ERROR: empty aggregate*}
# spawn test
spawn stap $srcdir/$subdir/$test.stp
expect {
$pass_result {
pass "$test passed"
}
-timeout 30 {
send "\003"
fail "$test timed out"
}
eof {
fail "$test unexpected EOF" }
-re "semantic error:" { fail "$test compilation" }
}
close
wait
|