]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
test defs: fix bug in plain version of `skip_all_'
authorStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 8 Aug 2011 14:41:42 +0000 (16:41 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 8 Aug 2011 16:48:17 +0000 (18:48 +0200)
* tests/plain-functions.sh (skip_all_): Call `skip_', not `skip'.

ChangeLog
tests/plain-functions.sh

index 3d2824aff4f0bd2d938bb1263ad0a5fac2042d21..6def0353429a5943d93d06810872217f4d89212d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-08  Stefano Lattarini  <stefano.lattarini@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.lattarini@gmail.com>
 
        test defs: small cleanups and tweakings
index c95ff1fab721596ff096dc716f9786266893647d..233f65d9b89e5330871a3eb0cfe32654c1de6053 100644 (file)
@@ -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_ "$@"; }
 
 :