* tests/plain-functions.sh (skip_all_): Call `skip_', not `skip'. --- ChangeLog | 5 +++++ tests/plain-functions.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 3d2824a..6def035 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-08-08 Stefano Lattarini <stefano.lattar...@gmail.com> + 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 <stefano.lattar...@gmail.com> + test defs: small cleanups and tweakings * tests/defs: Where possible, prefer `framework_failure_' or `fatal_' to `Exit 99'. Try to catch more possible hard errors diff --git a/tests/plain-functions.sh b/tests/plain-functions.sh index c95ff1f..233f65d 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_ "$@"; } : -- 1.7.2.3