[PATCH 19/21] t/fiotestcommon: add a success pattern for long tests
Ankit Kumar <[email protected]>
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
From: Vincent Fu <[email protected]> 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 <[email protected]> --- 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