From fe9072bff8700578fe199b88cdeb0a95283a609b Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 8 May 2025 14:58:13 -0400 Subject: [PATCH] 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 --- t/fiotestcommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.25.1