From: Vincent Fu Date: Thu, 30 Jan 2025 18:25:50 +0000 (+0000) Subject: t/fiotestcommon: add a success pattern for long tests X-Git-Tag: fio-3.40~44 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c7dbf40ffcfe2b0e26d415910d362b9964e036a6;p=fio.git t/fiotestcommon: add a success pattern for long tests On Windows the verify test script runs for longer than 10 minutes. Add a success pattern that accommodates this test. Signed-off-by: Vincent Fu --- diff --git a/t/fiotestcommon.py b/t/fiotestcommon.py index 6c146b66..9003b4c1 100644 --- a/t/fiotestcommon.py +++ b/t/fiotestcommon.py @@ -19,6 +19,11 @@ SUCCESS_DEFAULT = { 'stderr_empty': True, 'timeout': 600, } +SUCCESS_LONG = { + 'zero_return': True, + 'stderr_empty': True, + 'timeout': 1800, + } SUCCESS_NONZERO = { 'zero_return': False, 'stderr_empty': False,