From 36c3a18771c82fb3343c915c6bedc6519890da9b Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Mon, 3 Feb 2020 11:06:36 -0500 Subject: [PATCH] t/run-fio-tests: increase time allowed for tests to pass With a 300s timeout I occasionally see tests fail when they usually pass. Bump the timeout to 600s to give tests more of an opportunity to finish successfully. Signed-off-by: Vincent Fu --- t/run-fio-tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/run-fio-tests.py b/t/run-fio-tests.py index efeb771e..003ff664 100755 --- a/t/run-fio-tests.py +++ b/t/run-fio-tests.py @@ -510,17 +510,17 @@ class Requirements(object): SUCCESS_DEFAULT = { 'zero_return': True, 'stderr_empty': True, - 'timeout': 300, + 'timeout': 600, } SUCCESS_NONZERO = { 'zero_return': False, 'stderr_empty': False, - 'timeout': 300, + 'timeout': 600, } SUCCESS_STDERR = { 'zero_return': True, 'stderr_empty': False, - 'timeout': 300, + 'timeout': 600, } TEST_LIST = [ { -- 2.25.1