From: Eric Blake Date: Tue, 24 May 2011 22:42:37 +0000 (-0600) Subject: atexit-tests: ensure reliable exit status X-Git-Tag: v0.1~2706 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=fc9b0f6cfa9e0e148a79e51150c8171d617474f2;p=gnulib.git atexit-tests: ensure reliable exit status This was the only remaining init.sh client that didn't properly use the 'Exit' function. * tests/test-atexit.sh: Prefer 'Exit' over 'exit'. Reported by Bruno Haible. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 1f0ac8b19..31b9c1543 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-05-24 Eric Blake + + atexit-tests: ensure reliable exit status + * tests/test-atexit.sh: Prefer 'Exit' over 'exit'. + Reported by Bruno Haible. + 2011-05-24 Bruno Haible strerror_r-posix: Respect rules for use of AC_LIBOBJ. diff --git a/tests/test-atexit.sh b/tests/test-atexit.sh index 05f23eb98..643a72f54 100755 --- a/tests/test-atexit.sh +++ b/tests/test-atexit.sh @@ -25,4 +25,4 @@ if test -f t-atexit.tmp; then Exit 1 fi -exit 0 +Exit 0