diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-06-21 20:59:01 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-06-21 20:59:01 -0600 |
commit | 3e61f57d244166a66cb8a4866ad5aa3586258a77 (patch) | |
tree | cf6680b2254d0822c277b2eea0a93d99be43bb2b /test | |
parent | 7fa184f5d37fdd4d5ebde9fa62591231d4b01f5a (diff) | |
download | liburing-3e61f57d244166a66cb8a4866ad5aa3586258a77.tar.gz liburing-3e61f57d244166a66cb8a4866ad5aa3586258a77.tar.bz2 |
test/runtests.sh: make default timeout be 60 seconds
30 seconds is just a bit too short if the tests are run with
KASAN and PROVE_LOCKING enabled, make it 60 seconds instead.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rwxr-xr-x | test/runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtests.sh b/test/runtests.sh index d2e9f73..a891f4b 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -3,7 +3,7 @@ TESTS="$@" RET=0 -TIMEOUT=30 +TIMEOUT=60 FAILED="" MAYBE_FAILED="" |