Skip to content
Snippets Groups Projects
Commit 555d2a83 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.1218

Problem:    "make test" on MS-Windows does not clean all temporary files and
            gives some unneccessary message.
Solution:   Clean the right files.  Create .failed files. (Ken Takata)
parent d7986259
No related branches found
Tags v7.3.411
No related merge requests found
......@@ -61,6 +61,7 @@ report:
clean:
-del *.out
-del *.failed
-if exist test.ok del test.ok
-if exist small.vim del small.vim
-if exist tiny.vim del tiny.vim
......@@ -68,18 +69,22 @@ clean:
-if exist mzscheme.vim del mzscheme.vim
-if exist lua.vim del lua.vim
-del X*
-if exist Xdir1 rd /s /q Xdir1
-if exist Xfind rd /s /q Xfind
-if exist viminfo del viminfo
-del test.log
.in.out:
-if exist $*.failed del $*.failed
copy $*.ok test.ok
$(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
@diff test.out $*.ok & if errorlevel 1 (echo $* FAILED >> test.log ) \
else ( del /F $*.out & rename test.out $*.out )
@diff test.out $*.ok & if errorlevel 1 \
( move /y test.out $*.failed & echo $* FAILED >> test.log ) \
else ( move /y test.out $*.out )
-del X*
-del X*.*
-del test.ok
-rd /s /q Xfind
-if exist Xdir1 rd /s /q Xdir1
-if exist Xfind rd /s /q Xfind
-if exist viminfo del viminfo
nolog:
......
......@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1218,
/**/
1217,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment