From c7dbf40ffcfe2b0e26d415910d362b9964e036a6 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 30 Jan 2025 18:25:50 +0000 Subject: [PATCH] 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 --- t/fiotestcommon.py | 5 +++++ 1 file changed, 5 insertions(+) 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, -- 2.25.1