]> sourceware.org Git - automake.git/commitdiff
* pr19.test: Fail gracefully if gzip missing.
authorTom Tromey <tromey@redhat.com>
Sun, 19 Dec 1999 09:01:02 +0000 (09:01 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 19 Dec 1999 09:01:02 +0000 (09:01 +0000)
* install2.test: Fail gracefully if gzip missing.

tests/ChangeLog
tests/install2.test
tests/pr19.test

index 8897298133ccef88ce32b4d20152bd3d47ada774..4f7994fe4ce36ace35fe1b1c8048258d81a336a8 100644 (file)
@@ -1,3 +1,8 @@
+1999-12-19  Tom Tromey  <tromey@cygnus.com>
+
+       * pr19.test: Fail gracefully if gzip missing.
+       * install2.test: Fail gracefully if gzip missing.
+
 1999-12-19  Pavel Roskin  <pavel_roskin@geocities.com>
 
        * tests/defs: add all permissions to testSubDir before
index d2fc2d3a2a6185c2182b96e614475c5b673f9d52..a3abfede54468be3793f6ee6077b2063137ce656 100755 (executable)
@@ -21,6 +21,9 @@ rm -f install-sh mkinstalldirs missing
 # Fail gracefully if no autoconf.
 (autoconf --version) > /dev/null 2>&1 || exit 0
 
+# Likewise for gzip.
+(gzip --version) > /dev/null 2>&1 || exit 0
+
 $ACLOCAL || exit 1
 autoconf || exit 1
 $AUTOMAKE -a || exit 1
@@ -30,6 +33,5 @@ chmod 000 Makefile.am
 ./configure || exit 1
 $MAKE dist  || exit 1
 
-# FIXME.
 gunzip foo-0.1.tar.gz || exit 1
 tar tf foo-0.1.tar | fgrep Makefile.am
index 3714b8481b05d419d0511fa7f70009ac6e7c912f..ac51c43d1c08636b80383dd31190fa8cbc2adc14 100755 (executable)
@@ -37,6 +37,9 @@ echo %% > foo.l
 # Likewise for gcc.
 (gcc -v) > /dev/null 2>&1 || exit 0
 
+# Likewise for gzip.
+(gzip --version) > /dev/null 2>&1 || exit 0
+
 $ACLOCAL || exit 1
 autoconf || exit 1
 $AUTOMAKE -a || exit 1
@@ -44,7 +47,6 @@ CC=gcc ./configure || exit 1
 $MAKE || exit 1
 $MAKE distcheck || exit 1
 
-# FIXME.
 gunzip am_lex_bug-0.1.1.tar.gz || exit 1
 
 tar tf am_lex_bug-0.1.1.tar | fgrep foo.c
This page took 0.02791 seconds and 5 git commands to generate.