* tests/yacc7.test: Use test -f, not test -e.
authorTom Tromey <tromey@redhat.com>
Tue, 28 Aug 2001 04:30:44 +0000 (04:30 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 28 Aug 2001 04:30:44 +0000 (04:30 +0000)
ChangeLog
tests/yacc7.test

index 81cbd3b..0562eb0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-27  Tom Tromey  <tromey@redhat.com>
+
+       * tests/yacc7.test: Use test -f, not test -e.
+
 2001-08-27  Adrian Bunk  <bunk@fs.tum.de>
 
        * automake.texi (etags): Typo fix.
index 1661930..ebd877e 100755 (executable)
@@ -37,6 +37,6 @@ $AUTOCONF || exit 1
 
 $MAKE foo.h || exit 1
 
-test -e foo.h || exit 1
+test -f foo.h || exit 1
 
 exit 0