Skip to content

Commit 39a0222

Browse files
committed
Add an option to clean the test directory
1 parent 89a4c1e commit 39a0222

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tests/runall.bat

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
11
@ECHO off
22
REM This suite requires https://github.com/inkarkat/runVimTests to run
3+
4+
if %1.==clean. goto Clean
5+
if %1.==run. goto Run
6+
7+
echo "usage: runall.bat clean|run"
8+
goto End
9+
10+
11+
:Clean
12+
echo Cleaning
13+
del /Q *.out 2> nul
14+
del /Q *.msgout 2> nul
15+
goto End
16+
17+
:Run
18+
echo Running
319
../../runVimTests/bin/runVimTests.cmd --pure vimgrep.suite
20+
goto End
21+
22+
:End

0 commit comments

Comments
 (0)