Skip to content

Commit c7dbf40

Browse files
committed
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 <[email protected]>
1 parent 2189d66 commit c7dbf40

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

t/fiotestcommon.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
'stderr_empty': True,
2020
'timeout': 600,
2121
}
22+
SUCCESS_LONG = {
23+
'zero_return': True,
24+
'stderr_empty': True,
25+
'timeout': 1800,
26+
}
2227
SUCCESS_NONZERO = {
2328
'zero_return': False,
2429
'stderr_empty': False,

0 commit comments

Comments
 (0)