From: Ralf Wildenhues Date: Sun, 19 Mar 2006 06:13:41 +0000 (+0000) Subject: * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic X-Git-Tag: Release-1-9b~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15c0eddcd97022214a659718a41009eda6b44808;p=thirdparty%2Fautomake.git * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic to work with `set -e'. --- diff --git a/ChangeLog b/ChangeLog index ecae5670f..51bb07afc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-03-19 Ralf Wildenhues + * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic + to work with `set -e'. + * tests/depcomp6.test, tests/depcomp7.test: New tests, for general `depcomp' functionality, with and without `subdir-objects', with and without `libtool'. diff --git a/tests/depcomp6.test b/tests/depcomp6.test index 7de5a1704..8f80efc90 100755 --- a/tests/depcomp6.test +++ b/tests/depcomp6.test @@ -98,5 +98,5 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - $MAKE && exit 1 + if $MAKE; then false; else :; fi fi diff --git a/tests/depcomp7.test b/tests/depcomp7.test index 98bb77b43..321fbef45 100755 --- a/tests/depcomp7.test +++ b/tests/depcomp7.test @@ -100,5 +100,5 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - $MAKE && exit 1 + if $MAKE; then false; else :; fi fi