From 27f02eb4a78c30008997f8291ba540c769b19264 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Wed, 24 Jul 2002 21:45:45 +0000 Subject: [PATCH] Fix failures reported by Patrick Welche on NetBSD. * tests/gnits2.test, tests/gnits3.test: Don't trust the exit status of `make -k'. * tests/obsolete.test: Source obs.1 and obs.2 from current directory. --- ChangeLog | 8 ++++++++ tests/gnits2.test | 2 +- tests/gnits3.test | 2 +- tests/obsolete.test | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2e60e41..26fc8cae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2002-07-24 Alexandre Duret-Lutz + + Fix failures reported by Patrick Welche on NetBSD. + * tests/gnits2.test, tests/gnits3.test: Don't trust the exit + status of `make -k'. + * tests/obsolete.test: Source obs.1 and obs.2 from current + directory. + 2002-07-23 Patrick Welche * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES): Add diff --git a/tests/gnits2.test b/tests/gnits2.test index 50a79d44..b81cd17f 100755 --- a/tests/gnits2.test +++ b/tests/gnits2.test @@ -73,7 +73,7 @@ $MAKE all $MAKE install test -f ../inst-dir/bin/pfine test ! -f ../inst-dir/bin/fine -$MAKE -k installcheck 2>stderr && exit 1 +$MAKE -k installcheck 2>stderr || : # Never trust the exit status of make -k. cat stderr grep 'pfubar does not support' stderr grep 'pfubar3 does not support' stderr diff --git a/tests/gnits3.test b/tests/gnits3.test index 256023b4..70c3ba94 100755 --- a/tests/gnits3.test +++ b/tests/gnits3.test @@ -62,7 +62,7 @@ cd build ../configure --prefix=`pwd`/../inst-dir --program-prefix=p $MAKE $MAKE install -$MAKE -k installcheck 2>stderr && exit 1 +$MAKE -k installcheck 2>stderr || : # Never trust the exit status of make -k. cat stderr grep 'sub/pnok does not support' stderr grep 'sub/pnok.sh does not support' stderr diff --git a/tests/obsolete.test b/tests/obsolete.test index 1036659a..0505f99a 100755 --- a/tests/obsolete.test +++ b/tests/obsolete.test @@ -21,10 +21,10 @@ $ACLOCAL || exit 1 # Expect Autoconf to complain about each of the macros in obs. $AUTOCONF -Wobsolete >stderr 2>&1 -. obs.1 +. ./obs.1 # Make sure Autoupdate remove each of these macros. $AUTOUPDATE || exit 1 -. obs.2 +. ./obs.2 # Autoconf should be able to grok the updated configure.in. $AUTOCONF || exit 1 -- 2.43.5