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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
set test "control_limits MAXNESTING"
if {![installtest_p]} { untested $test; return }
# Test MAXNESTING.
foreach runtime [get_runtime_list] {
set test "control_limits MAXNESTING"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXNESTING=5 $srcdir/$subdir/control_limits.stp \
--runtime=$runtime
} else {
spawn stap -u -DMAXNESTING=5 $srcdir/$subdir/control_limits.stp
}
set ok 0
expect {
-timeout 150
-re {ERROR.*MAXNESTING} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ok == 1} { pass "$test ($ok)" } { fail "$test ($ok)" }
}
foreach runtime [get_runtime_list] {
set test "control_limits MAXNESTING proper"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXNESTING=8 $srcdir/$subdir/control_limits.stp \
--runtime=$runtime
} else {
spawn stap -u -DMAXNESTING=8 $srcdir/$subdir/control_limits.stp
}
set ko 0
expect {
-timeout 150
-re {ERROR.*MAXNESTING} { incr ko; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ko == 0} { pass "$test ($ko)" } { fail "$test ($ko)" }
}
# Test MAXACTION.
foreach runtime [get_runtime_list] {
set test "control_limits MAXACTION"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXACTION_INTERRUPTIBLE=500 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -DMAXACTION_INTERRUPTIBLE=500 \
$srcdir/$subdir/control_limits.stp
}
set ok 0
expect {
-timeout 150
-re {ERROR.*MAXACTION} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ok == 1} { pass "$test ($ok)" } { fail "$test ($ok)" }
}
foreach runtime [get_runtime_list] {
set test "control_limits MAXACTION proper"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXACTION_INTERRUPTIBLE=502 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -DMAXACTION_INTERRUPTIBLE=502 \
$srcdir/$subdir/control_limits.stp
}
set ko 0
expect {
-timeout 150
-re {ERROR.*MAXACTION} { incr ko; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ko == 0} { pass "$test ($ko)" } { fail "$test ($ko)" }
}
# Test MAXMAPENTRIES.
foreach runtime [get_runtime_list] {
set test "control_limits MAXMAPENTRIES"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -D MAXMAPENTRIES=19 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -D MAXMAPENTRIES=19 \
$srcdir/$subdir/control_limits.stp
}
set ok 0
expect {
-timeout 150
-re {ERROR.*MAXMAPENTRIES} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ok == 1} { pass "$test ($ok)" } { fail "$test ($ok)" }
}
foreach runtime [get_runtime_list] {
set test "control_limits MAXMAPENTRIES proper"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -D MAXMAPENTRIES=20 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -D MAXMAPENTRIES=20 \
$srcdir/$subdir/control_limits.stp
}
set ko 0
expect {
-timeout 150
-re {ERROR.*MAXMAPENTRIES} { incr ko; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ko == 0} { pass "$test ($ko)" } { fail "$test ($ko)" }
}
# Test MAXSTRINGLEN.
foreach runtime [get_runtime_list] {
set test "control_limits MAXSTRINGLEN small"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXSTRINGLEN=50 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -DMAXSTRINGLEN=50 $srcdir/$subdir/control_limits.stp
}
set ok 0
expect {
-timeout 150
-re {ERROR.*MAXSTRINGLEN reduced} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ok == 1} { pass "$test ($ok)" } { fail "$test ($ok)" }
}
foreach runtime [get_runtime_list] {
set test "control_limits MAXSTRINGLEN large"
if {$runtime != ""} {
lappend test "($runtime)"
spawn stap -u -DMAXSTRINGLEN=500 \
$srcdir/$subdir/control_limits.stp --runtime=$runtime
} else {
spawn stap -u -DMAXSTRINGLEN=500 $srcdir/$subdir/control_limits.stp
}
set ok 0
expect {
-timeout 150
-re {ERROR.*MAXSTRINGLEN enlarged} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
catch {close}; catch {wait}
if {$ok == 1} { pass "$test ($ok)" } { fail "$test ($ok)" }
}
|