From: Stefano Lattarini Date: Thu, 2 Jun 2011 12:40:19 +0000 (+0200) Subject: tests: fix spurious failure in backcompat2.test on NetBSD X-Git-Tag: ng-0.5a~89^2~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57576b60c67f8c3c69a1724d4f34736f5a9fd3ce;p=thirdparty%2Fautomake.git tests: fix spurious failure in backcompat2.test on NetBSD * tests/backcompat2.test: Add trailing `:' in the body of a `for' loop, in case the last command there might have an exit status different 0. This work around `set -e' issues in some BSD shells, e.g., NetBSD /bin/ksh. --- diff --git a/ChangeLog b/ChangeLog index 52d81f7c5..9ec908313 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-06-02 Stefano Lattarini + + tests: fix spurious failure in backcompat2.test on NetBSD + * tests/backcompat2.test: Add trailing `:' in the body of a `for' + loop, in case the last command there might have an exit status + different 0. This work around `set -e' issues in some BSD shells, + e.g., NetBSD /bin/ksh. + 2011-06-02 Stefano Lattarini tests: fix spurious failure in autohdr3.test diff --git a/tests/backcompat2.test b/tests/backcompat2.test index 98336eac9..5be6aec47 100755 --- a/tests/backcompat2.test +++ b/tests/backcompat2.test @@ -45,6 +45,11 @@ END # The non-empty third argument should prevent PACKAGE and VERSION # from being AC_DEFINE'd. $EGREP 'pkg(name|version)' config.h && Exit 1 + # This is required because even relatively-recent versions of the + # BSD shell wrongly exit when the `errexit' shell flag is active if + # the last command of a compound statement fails, even if it should + # be protected by the use of "&&". + : done for am_extra_args in '' ',' ', []'; do