home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.1218 < prev    next >
Encoding:
Internet Message Format  |  2013-06-16  |  2.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1218
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.1218
  11. Problem:    "make test" on MS-Windows does not clean all temporary files and
  12.         gives some unneccessary message.
  13. Solution:   Clean the right files.  Create .failed files. (Ken Takata)
  14. Files:        src/testdir/Make_dos.mak
  15.  
  16.  
  17. *** ../vim-7.3.1217/src/testdir/Make_dos.mak    2013-06-16 16:57:43.000000000 +0200
  18. --- src/testdir/Make_dos.mak    2013-06-17 21:49:44.000000000 +0200
  19. ***************
  20. *** 61,66 ****
  21. --- 61,67 ----
  22.   
  23.   clean:
  24.       -del *.out
  25. +     -del *.failed
  26.       -if exist test.ok del test.ok
  27.       -if exist small.vim del small.vim
  28.       -if exist tiny.vim del tiny.vim
  29. ***************
  30. *** 68,85 ****
  31.       -if exist mzscheme.vim del mzscheme.vim
  32.       -if exist lua.vim del lua.vim
  33.       -del X*
  34.       -if exist viminfo del viminfo
  35.       -del test.log
  36.   
  37.   .in.out:
  38.       copy $*.ok test.ok
  39.       $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
  40. !     @diff test.out $*.ok & if errorlevel 1 (echo $* FAILED >> test.log ) \
  41. !         else ( del /F $*.out & rename test.out $*.out )
  42.       -del X*
  43. -     -del X*.*
  44.       -del test.ok
  45. !     -rd /s /q Xfind
  46.       -if exist viminfo del viminfo
  47.   
  48.   nolog:
  49. --- 69,90 ----
  50.       -if exist mzscheme.vim del mzscheme.vim
  51.       -if exist lua.vim del lua.vim
  52.       -del X*
  53. +     -if exist Xdir1 rd /s /q Xdir1
  54. +     -if exist Xfind rd /s /q Xfind
  55.       -if exist viminfo del viminfo
  56.       -del test.log
  57.   
  58.   .in.out:
  59. +     -if exist $*.failed del $*.failed
  60.       copy $*.ok test.ok
  61.       $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
  62. !     @diff test.out $*.ok & if errorlevel 1 \
  63. !         ( move /y test.out $*.failed & echo $* FAILED >> test.log ) \
  64. !         else ( move /y test.out $*.out )
  65.       -del X*
  66.       -del test.ok
  67. !     -if exist Xdir1 rd /s /q Xdir1
  68. !     -if exist Xfind rd /s /q Xfind
  69.       -if exist viminfo del viminfo
  70.   
  71.   nolog:
  72. *** ../vim-7.3.1217/src/version.c    2013-06-17 21:33:36.000000000 +0200
  73. --- src/version.c    2013-06-17 21:52:02.000000000 +0200
  74. ***************
  75. *** 730,731 ****
  76. --- 730,733 ----
  77.   {   /* Add new patch number below this line */
  78. + /**/
  79. +     1218,
  80.   /**/
  81.  
  82. -- 
  83. "After a few years of marriage a man can look right at a woman
  84. without seeing her and a woman can see right through a man
  85. without looking at him."
  86.  - Helen Rowland
  87.  
  88.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  89. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  90. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  91.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  92.