Karsten Hopp 342b12
To: vim_dev@googlegroups.com
Karsten Hopp 342b12
Subject: Patch 7.3.1218
Karsten Hopp 342b12
Fcc: outbox
Karsten Hopp 342b12
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp 342b12
Mime-Version: 1.0
Karsten Hopp 342b12
Content-Type: text/plain; charset=UTF-8
Karsten Hopp 342b12
Content-Transfer-Encoding: 8bit
Karsten Hopp 342b12
------------
Karsten Hopp 342b12
Karsten Hopp 342b12
Patch 7.3.1218
Karsten Hopp 342b12
Problem:    "make test" on MS-Windows does not clean all temporary files and
Karsten Hopp 342b12
	    gives some unneccessary message.
Karsten Hopp 342b12
Solution:   Clean the right files.  Create .failed files. (Ken Takata)
Karsten Hopp 342b12
Files:	    src/testdir/Make_dos.mak
Karsten Hopp 342b12
Karsten Hopp 342b12
Karsten Hopp 342b12
*** ../vim-7.3.1217/src/testdir/Make_dos.mak	2013-06-16 16:57:43.000000000 +0200
Karsten Hopp 342b12
--- src/testdir/Make_dos.mak	2013-06-17 21:49:44.000000000 +0200
Karsten Hopp 342b12
***************
Karsten Hopp 342b12
*** 61,66 ****
Karsten Hopp 342b12
--- 61,67 ----
Karsten Hopp 342b12
  
Karsten Hopp 342b12
  clean:
Karsten Hopp 342b12
  	-del *.out
Karsten Hopp 342b12
+ 	-del *.failed
Karsten Hopp 342b12
  	-if exist test.ok del test.ok
Karsten Hopp 342b12
  	-if exist small.vim del small.vim
Karsten Hopp 342b12
  	-if exist tiny.vim del tiny.vim
Karsten Hopp 342b12
***************
Karsten Hopp 342b12
*** 68,85 ****
Karsten Hopp 342b12
  	-if exist mzscheme.vim del mzscheme.vim
Karsten Hopp 342b12
  	-if exist lua.vim del lua.vim
Karsten Hopp 342b12
  	-del X*
Karsten Hopp 342b12
  	-if exist viminfo del viminfo
Karsten Hopp 342b12
  	-del test.log
Karsten Hopp 342b12
  
Karsten Hopp 342b12
  .in.out:
Karsten Hopp 342b12
  	copy $*.ok test.ok
Karsten Hopp 342b12
  	$(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
Karsten Hopp 342b12
! 	@diff test.out $*.ok & if errorlevel 1 (echo $* FAILED >> test.log ) \
Karsten Hopp 342b12
! 		else ( del /F $*.out & rename test.out $*.out )
Karsten Hopp 342b12
  	-del X*
Karsten Hopp 342b12
- 	-del X*.*
Karsten Hopp 342b12
  	-del test.ok
Karsten Hopp 342b12
! 	-rd /s /q Xfind
Karsten Hopp 342b12
  	-if exist viminfo del viminfo
Karsten Hopp 342b12
  
Karsten Hopp 342b12
  nolog:
Karsten Hopp 342b12
--- 69,90 ----
Karsten Hopp 342b12
  	-if exist mzscheme.vim del mzscheme.vim
Karsten Hopp 342b12
  	-if exist lua.vim del lua.vim
Karsten Hopp 342b12
  	-del X*
Karsten Hopp 342b12
+ 	-if exist Xdir1 rd /s /q Xdir1
Karsten Hopp 342b12
+ 	-if exist Xfind rd /s /q Xfind
Karsten Hopp 342b12
  	-if exist viminfo del viminfo
Karsten Hopp 342b12
  	-del test.log
Karsten Hopp 342b12
  
Karsten Hopp 342b12
  .in.out:
Karsten Hopp 342b12
+ 	-if exist $*.failed del $*.failed
Karsten Hopp 342b12
  	copy $*.ok test.ok
Karsten Hopp 342b12
  	$(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
Karsten Hopp 342b12
! 	@diff test.out $*.ok & if errorlevel 1 \
Karsten Hopp 342b12
! 		( move /y test.out $*.failed & echo $* FAILED >> test.log ) \
Karsten Hopp 342b12
! 		else ( move /y test.out $*.out )
Karsten Hopp 342b12
  	-del X*
Karsten Hopp 342b12
  	-del test.ok
Karsten Hopp 342b12
! 	-if exist Xdir1 rd /s /q Xdir1
Karsten Hopp 342b12
! 	-if exist Xfind rd /s /q Xfind
Karsten Hopp 342b12
  	-if exist viminfo del viminfo
Karsten Hopp 342b12
  
Karsten Hopp 342b12
  nolog:
Karsten Hopp 342b12
*** ../vim-7.3.1217/src/version.c	2013-06-17 21:33:36.000000000 +0200
Karsten Hopp 342b12
--- src/version.c	2013-06-17 21:52:02.000000000 +0200
Karsten Hopp 342b12
***************
Karsten Hopp 342b12
*** 730,731 ****
Karsten Hopp 342b12
--- 730,733 ----
Karsten Hopp 342b12
  {   /* Add new patch number below this line */
Karsten Hopp 342b12
+ /**/
Karsten Hopp 342b12
+     1218,
Karsten Hopp 342b12
  /**/
Karsten Hopp 342b12
Karsten Hopp 342b12
-- 
Karsten Hopp 342b12
"After a few years of marriage a man can look right at a woman
Karsten Hopp 342b12
without seeing her and a woman can see right through a man
Karsten Hopp 342b12
without looking at him."
Karsten Hopp 342b12
 - Helen Rowland
Karsten Hopp 342b12
Karsten Hopp 342b12
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp 342b12
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp 342b12
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp 342b12
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///