From: Stefano Lattarini Date: Mon, 8 Aug 2011 14:41:42 +0000 (+0200) Subject: test defs: fix bug in plain version of `skip_all_' X-Git-Tag: ng-0.5a~89^2~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff1b47682742db4706a523ef90a6f9daec44058c;p=thirdparty%2Fautomake.git test defs: fix bug in plain version of `skip_all_' * tests/plain-functions.sh (skip_all_): Call `skip_', not `skip'. --- diff --git a/ChangeLog b/ChangeLog index 3d2824aff..6def03534 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-08 Stefano Lattarini + + test defs: fix bug in plain version of `skip_all_' + * tests/plain-functions.sh (skip_all_): Call `skip_', not `skip'. + 2011-08-08 Stefano Lattarini test defs: small cleanups and tweakings diff --git a/tests/plain-functions.sh b/tests/plain-functions.sh index c95ff1fab..233f65d9b 100644 --- a/tests/plain-functions.sh +++ b/tests/plain-functions.sh @@ -35,6 +35,6 @@ fatal_ () { warn_ "$me: hard error: $@"; Exit 99; } framework_failure_ () { warn_ "$me: set-up failure: $@"; Exit 99; } # For compatibility with TAP functions. -skip_all_ () { skip "$@"; } +skip_all_ () { skip_ "$@"; } :