summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.samples/control_limits.exp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.samples/control_limits.exp')
-rw-r--r--testsuite/systemtap.samples/control_limits.exp12
1 files changed, 8 insertions, 4 deletions
diff --git a/testsuite/systemtap.samples/control_limits.exp b/testsuite/systemtap.samples/control_limits.exp
index c5cbfac3..513b2c4d 100644
--- a/testsuite/systemtap.samples/control_limits.exp
+++ b/testsuite/systemtap.samples/control_limits.exp
@@ -4,7 +4,8 @@ if {![installtest_p]} { untested $test; return }
spawn stap -u -DMAXNESTING=5 $srcdir/$subdir/control_limits.stp
set ok 0
expect {
- -timeout 60 -re {ERROR.*MAXNESTING} { incr ok; exp_continue }
+ -timeout 150
+ -re {ERROR.*MAXNESTING} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
@@ -14,7 +15,8 @@ set test "control_limits MAXACTION"
spawn stap -u -DMAXACTION_INTERRUPTIBLE=500 $srcdir/$subdir/control_limits.stp
set ok 0
expect {
- -timeout 60 -re {ERROR.*MAXACTION} { incr ok; exp_continue }
+ -timeout 150
+ -re {ERROR.*MAXACTION} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
@@ -24,7 +26,8 @@ set test "control_limits MAXSTRINGLEN small"
spawn stap -u -DMAXSTRINGLEN=50 $srcdir/$subdir/control_limits.stp
set ok 0
expect {
- -timeout 60 -re {ERROR.*MAXSTRINGLEN reduced} { incr ok; exp_continue }
+ -timeout 150
+ -re {ERROR.*MAXSTRINGLEN reduced} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}
@@ -34,7 +37,8 @@ set test "control_limits MAXSTRINGLEN large"
spawn stap -u -DMAXSTRINGLEN=500 $srcdir/$subdir/control_limits.stp
set ok 0
expect {
- -timeout 60 -re {ERROR.*MAXSTRINGLEN enlarged} { incr ok; exp_continue }
+ -timeout 150
+ -re {ERROR.*MAXSTRINGLEN enlarged} { incr ok; exp_continue }
timeout { fail "$test (timeout)" }
eof { }
}