From: Vincent Fu <vincent.fu@xxxxxxxxxxx> 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 <vincent.fu@xxxxxxxxxxx> --- 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