updated for version 7.4.196
Problem: Tests fail on Solaris 9 and 10.
Solution: Use "test -f" instead of "test -e". (Laurent Blume)
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index d86a7b0..290200f 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -61,7 +61,7 @@
test1.out: test1.in
-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
$(RUN_VIM) $*.in
- @/bin/sh -c "if test -e wrongtermsize; \
+ @/bin/sh -c "if test -f wrongtermsize; \
then echo; \
echo test1 FAILED - terminal size must be 80x24 or larger; \
echo; exit 1; \