]> granicus.if.org Git - vim/commitdiff
patch 8.2.1456: MS-Windows: test files are not deleted v8.2.1456
authorBram Moolenaar <Bram@vim.org>
Fri, 14 Aug 2020 21:08:22 +0000 (23:08 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 14 Aug 2020 21:08:22 +0000 (23:08 +0200)
Problem:    MS-Windows: test files are not deleted.
Solution:   use "del" instead of $(DEL).

src/testdir/Make_dos.mak
src/version.c

index 4ca87136a4b377b029b3040542d097eb8f987c0f..ba728df9ebd0bdedbe14a50e553b4b53babd4dbc 100644 (file)
@@ -53,16 +53,16 @@ $(NEW_TESTS):
 # Delete files that may interfere with running tests.  This includes some files
 # that may result from working on the tests, not only from running them.
 clean:
-       -if exist *.out $(DEL) *.out
-       -if exist *.failed $(DEL) *.failed
-       -if exist *.res $(DEL) *.res
+       -if exist *.out del *.out
+       -if exist *.failed del *.failed
+       -if exist *.res del *.res
        -if exist $(DOSTMP) rd /s /q $(DOSTMP)
        -if exist test.in del test.in
        -if exist test.ok del test.ok
        -if exist Xdir1 rd /s /q Xdir1
        -if exist Xfind rd /s /q Xfind
        -if exist XfakeHOME rd /s /q XfakeHOME
-       -if exist X* $(DEL) X*
+       -if exist X* del X*
        -for /d %i in (X*) do @rd /s/q %i
        -if exist viminfo del viminfo
        -if exist test.log del test.log
index e873a9c07e804b8162fb1d7cd2bbe72d5f6b7073..cc3b9fd055ec79810ccdab36170ad030db985d89 100644 (file)
@@ -754,6 +754,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1456,
 /**/
     1455,
 /**/