diff options
author | dwilder <dwilder> | 2007-04-25 17:31:01 +0000 |
---|---|---|
committer | dwilder <dwilder> | 2007-04-25 17:31:01 +0000 |
commit | 46abbf33eacb7fa25637a7be3a83c3a79ddd7891 (patch) | |
tree | 816fe503f61a0921ea53266525d338bd22d7ff03 | |
parent | ffa0216ffef940d174adeaa8e17adb1fd9b95d0f (diff) | |
download | systemtap-steved-46abbf33eacb7fa25637a7be3a83c3a79ddd7891.tar.gz systemtap-steved-46abbf33eacb7fa25637a7be3a83c3a79ddd7891.tar.xz systemtap-steved-46abbf33eacb7fa25637a7be3a83c3a79ddd7891.zip |
Increased timeout to fix intermittent test failures on s390x
-rw-r--r-- | testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | testsuite/systemtap.samples/profile.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 21c78ba1..07b575ec 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-04-25 David Wilder <dwilder@ibm.com> + + * systemtap.samples/profile.exp Increased timeout from 30 to 60 sec + to fix intermittent failures on s390x. + 2007-0-2 Mike Mason <mmlnx@us.ibm.com> * buildok/socket.stp: Adapted to changes in 2.6.19 socket routines. diff --git a/testsuite/systemtap.samples/profile.exp b/testsuite/systemtap.samples/profile.exp index 39b4587f..f1dc1b79 100644 --- a/testsuite/systemtap.samples/profile.exp +++ b/testsuite/systemtap.samples/profile.exp @@ -4,7 +4,7 @@ if {![installtest_p]} { untested $test; return } spawn stap $srcdir/$subdir/profile.stp set ok 0 expect { - -timeout 30 -re {kernel.function[^\r]*ttime=[0-9]*\r} { incr ok; exp_continue } + -timeout 60 -re {kernel.function[^\r]*ttime=[0-9]*\r} { incr ok; exp_continue } timeout { fail "$test (timeout)" } eof { } } |