t/fiotestcommon: add a success pattern for long tests
authorVincent Fu <vincent.fu@samsung.com>
Thu, 30 Jan 2025 18:25:50 +0000 (18:25 +0000)
committerVincent Fu <vincentfu@gmail.com>
Thu, 6 Mar 2025 18:58:43 +0000 (13:58 -0500)
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@samsung.com>
t/fiotestcommon.py

index 6c146b6614345428bcec93479418406893c45ca3..9003b4c14ae4597ad9442161052b9d7b21adc2f5 100644 (file)
@@ -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,