Files
raven/test/raven-integration/burntest.bat
2018-10-08 22:22:17 +00:00

11 lines
103 B
Batchfile

SET /a VAR=0
:HOME
SET /a VAR=VAR+1
IF %VAR%==1000 goto :End
dotnet test
goto :HOME
:END