|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.196
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.196
|
|
|
073263 |
Problem: Tests fail on Solaris 9 and 10.
|
|
|
073263 |
Solution: Use "test -f" instead of "test -e". (Laurent Blume)
|
|
|
073263 |
Files: src/testdir/Makefile
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.195/src/testdir/Makefile 2014-02-23 23:38:58.812760280 +0100
|
|
|
073263 |
--- src/testdir/Makefile 2014-03-12 15:46:41.352732878 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 61,67 ****
|
|
|
073263 |
test1.out: test1.in
|
|
|
073263 |
-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
|
|
|
073263 |
$(RUN_VIM) $*.in
|
|
|
073263 |
! @/bin/sh -c "if test -e wrongtermsize; \
|
|
|
073263 |
then echo; \
|
|
|
073263 |
echo test1 FAILED - terminal size must be 80x24 or larger; \
|
|
|
073263 |
echo; exit 1; \
|
|
|
073263 |
--- 61,67 ----
|
|
|
073263 |
test1.out: test1.in
|
|
|
073263 |
-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
|
|
|
073263 |
$(RUN_VIM) $*.in
|
|
|
073263 |
! @/bin/sh -c "if test -f wrongtermsize; \
|
|
|
073263 |
then echo; \
|
|
|
073263 |
echo test1 FAILED - terminal size must be 80x24 or larger; \
|
|
|
073263 |
echo; exit 1; \
|
|
|
073263 |
*** ../vim-7.4.195/src/version.c 2014-03-12 15:26:36.432714415 +0100
|
|
|
073263 |
--- src/version.c 2014-03-12 15:48:09.700734232 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 740,741 ****
|
|
|
073263 |
--- 740,743 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 196,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
My Go, this amn keyboar oesn't have a .
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|