This commit is contained in:
2019-10-23 18:00:57 +00:00
parent 69aeb111df
commit a8dbd7106a
3 changed files with 34 additions and 10 deletions

View File

@@ -1,8 +1,10 @@
SET /a VAR=0
@SET /a VAR=0
:HOME
SET /a VAR=VAR+1
rem 1000 runs in local debug mode server is about 6 hours at current test pace with huge data
IF %VAR%==1000 goto :End
dotnet test
goto :HOME
@SET /a VAR=VAR+1
@rem 1000 runs in local debug mode server is about 6 hours at current test pace with huge data
@IF %VAR%==1000 goto :End
@ECHO TEST RUN %VAR% STARTED AT %TIME%
@dotnet test
@ECHO TEST RUN %VAR% COMPLETED AT %TIME%
@goto :HOME
:End