# HG changeset patch # User Eric Blake # Date 1306276957 21600 # Node ID c01cf90644e5d40973915b382c4a32819e99dad9 # Parent e3204c55066dca286c76ca4223d248550320569c 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 --- 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 --- a/tests/test-atexit.sh +++ b/tests/test-atexit.sh @@ -25,4 +25,4 @@ Exit 1 fi -exit 0 +Exit 0