diff options
author | hunt <hunt> | 2007-05-25 14:40:31 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-05-25 14:40:31 +0000 |
commit | 5980a64171df3af58258d93ae3b0729cdc900f2e (patch) | |
tree | 1447aa5a1777d72e637944b3f0b2fab76ce07a4a /testsuite/systemtap.maps | |
parent | f29c6102608f553542f443b4fc981700261fee59 (diff) | |
download | systemtap-steved-5980a64171df3af58258d93ae3b0729cdc900f2e.tar.gz systemtap-steved-5980a64171df3af58258d93ae3b0729cdc900f2e.tar.xz systemtap-steved-5980a64171df3af58258d93ae3b0729cdc900f2e.zip |
2007-05-25 Martin Hunt <hunt@redhat.com>
* systemtap.samples/lket.exp (cleanfiles): Set timeout inside expect.
* systemtap.maps/absentstats.exp: Set timeout inside expect.
* lib/stap_run2.exp (stap_run2): Set timeout to 180 inside expect.
* lib/stap_run.exp (stap_run): Set timeout to 180 for slower machines.
Remove $ anchor on output. Fix a few minor nits in patterns.
Diffstat (limited to 'testsuite/systemtap.maps')
-rw-r--r-- | testsuite/systemtap.maps/absentstats.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.maps/absentstats.exp b/testsuite/systemtap.maps/absentstats.exp index 5773e7ae..38cdbd07 100644 --- a/testsuite/systemtap.maps/absentstats.exp +++ b/testsuite/systemtap.maps/absentstats.exp @@ -6,11 +6,11 @@ if {![installtest_p]} { untested $test; return } set ok 0 set ko 0 -set timeout 20 spawn stap -DMAXERRORS=20 $srcdir/$subdir/$test.stp # spawn echo hello children 0 expect { + -timeout 60 -re {^ERROR: empty aggregate[^\r]*\r} { incr ko ; exp_continue } -re {^WARNING: Number of errors} { incr ko ; exp_continue } -re {^0\r} { incr ok ; exp_continue } |