Skip to content

Commit 1623619

Browse files
committed
patch 8.2.1456: MS-Windows: test files are not deleted
Problem: MS-Windows: test files are not deleted. Solution: use "del" instead of $(DEL).
1 parent d110358 commit 1623619

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/testdir/Make_dos.mak

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ $(NEW_TESTS):
5353
# Delete files that may interfere with running tests. This includes some files
5454
# that may result from working on the tests, not only from running them.
5555
clean:
56-
-if exist *.out $(DEL) *.out
57-
-if exist *.failed $(DEL) *.failed
58-
-if exist *.res $(DEL) *.res
56+
-if exist *.out del *.out
57+
-if exist *.failed del *.failed
58+
-if exist *.res del *.res
5959
-if exist $(DOSTMP) rd /s /q $(DOSTMP)
6060
-if exist test.in del test.in
6161
-if exist test.ok del test.ok
6262
-if exist Xdir1 rd /s /q Xdir1
6363
-if exist Xfind rd /s /q Xfind
6464
-if exist XfakeHOME rd /s /q XfakeHOME
65-
-if exist X* $(DEL) X*
65+
-if exist X* del X*
6666
-for /d %i in (X*) do @rd /s/q %i
6767
-if exist viminfo del viminfo
6868
-if exist test.log del test.log

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1456,
757759
/**/
758760
1455,
759761
/**/

0 commit comments

Comments
 (0)