File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -196,8 +196,9 @@ goto :main
196
196
if /i " %1 " == " -DumpOnCrash" set _DumpOnCrash = 1& goto :ArgOk
197
197
if /i " %1 " == " -CrashOnException" set _CrashOnException = 1& goto :ArgOk
198
198
199
- :: Timeout flag
200
- if /i " %1 " == " -timeout" set _TestTimeout = %~2 & goto : ArgOkShift2
199
+ :: Timeout flags
200
+ if /i " %1 " == " -timeout" set _TestTimeout = %~2 & goto :ArgOkShift2
201
+ if /i " %1 " == " -timeoutRetries" set _TestTimeoutRetries = %~2 & goto :ArgOkShift2
201
202
202
203
if /i " %1 " == " -extraVariants" (
203
204
:: Extra variants are specified by the user but not run by default.
@@ -495,6 +496,9 @@ goto :main
495
496
if not " %_TestTimeout% " == " " (
496
497
set EXTRA_RL_FLAGS = %EXTRA_RL_FLAGS% -timeout:%_TestTimeout%
497
498
)
499
+ if not " %_TestTimeoutRetries% " == " " (
500
+ set EXTRA_RL_FLAGS = %EXTRA_RL_FLAGS% -timeoutRetries:%_TestTimeoutRetries%
501
+ )
498
502
499
503
echo .
500
504
echo ############# Starting %_TESTCONFIG% variant #############
You can’t perform that action at this time.
0 commit comments