From 15c0eddcd97022214a659718a41009eda6b44808 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sun, 19 Mar 2006 06:13:41 +0000 Subject: [PATCH] * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic to work with `set -e'. --- ChangeLog | 3 +++ tests/depcomp6.test | 2 +- tests/depcomp7.test | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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 -- 2.47.3