diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-10-03 20:12:51 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-10-03 20:12:51 -0600 |
commit | 720449896f0d1d849bc5b3ce8ab816d63cf642af (patch) | |
tree | 7b902570534f941498a83faa28482593a4393069 /test | |
parent | e8c7087ec9c2cb77574959114ce3c98a3e9039c7 (diff) | |
download | liburing-720449896f0d1d849bc5b3ce8ab816d63cf642af.tar.gz liburing-720449896f0d1d849bc5b3ce8ab816d63cf642af.tar.bz2 |
test/runtests.sh: make default timeout 30s, not 10s
The file register test takes more than 10 seconds, let's bump the
timeout.
We really need a way to signal if we expect to terminate a test
through a timeout, which would make the timeout expected, or
whether having to terminate it with timeout constitutes a failure.
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 6e5391a..c9783b5 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -3,7 +3,7 @@ TESTS="$@" RET=0 -TIMEOUT=10 +TIMEOUT=30 FAILED="" for t in $TESTS; do |