summaryrefslogtreecommitdiffstats
path: root/src/testdir/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-12 15:50:22 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-12 15:50:22 +0100
commitf7dc2b551708315a833fcb19c288759c277dcfe1 (patch)
tree5ff6f0de782c16a1336f779ae88413c515a339cb /src/testdir/Makefile
parent038e5d47660b1b6ffe9005a4bcc51c88a3b38416 (diff)
updated for version 7.4.196v7.4.196
Problem: Tests fail on Solaris 9 and 10. Solution: Use "test -f" instead of "test -e". (Laurent Blume)
Diffstat (limited to 'src/testdir/Makefile')
-rw-r--r--src/testdir/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/Makefile b/src/testdir/Makefile
index d86a7b06e1..290200f9a6 100644
--- a/src/testdir/Makefile
+++ b/src/testdir/Makefile
@@ -61,7 +61,7 @@ clean:
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; \