From: Vincent Fu Date: Thu, 8 May 2025 18:58:13 +0000 (-0400) Subject: t/fiotestcommon: lengthen timeout for longer tests X-Git-Tag: fio-3.40~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=fe9072bff8700578fe199b88cdeb0a95283a609b;p=fio.git t/fiotestcommon: lengthen timeout for longer tests For GitHub-hosted Windows runners t/verify.py runs for longer than 30 min when it tests all checksum methods. Make the timeout for SUCESS_LONG tests 1hr to accommodate these tests. Link: https://lore.kernel.org/r/20250508185832.3702-6-vincent.fu@samsung.com Signed-off-by: Vincent Fu --- diff --git a/t/fiotestcommon.py b/t/fiotestcommon.py index 9003b4c1..04dfb91f 100644 --- a/t/fiotestcommon.py +++ b/t/fiotestcommon.py @@ -22,7 +22,7 @@ SUCCESS_DEFAULT = { SUCCESS_LONG = { 'zero_return': True, 'stderr_empty': True, - 'timeout': 1800, + 'timeout': 3600, } SUCCESS_NONZERO = { 'zero_return': False,