1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-17 12:41:05 +03:00
Files
gnulib/tests/test-atexit.sh
Eric Blake fc9b0f6cfa 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 <eblake@redhat.com>
2011-05-24 17:22:20 -06:00

29 lines
539 B
Bash
Executable File

#!/bin/sh
: ${srcdir=.}
. "$srcdir/init.sh"; path_prepend_ .
# Check that an atexit handler is called when main() returns normally.
echo > t-atexit.tmp
test-atexit
if test -f t-atexit.tmp; then
Exit 1
fi
# Check that an atexit handler is called when the program is left
# through exit(0).
echo > t-atexit.tmp
test-atexit 0
if test -f t-atexit.tmp; then
Exit 1
fi
# Check that an atexit handler is called when the program is left
# through exit(1).
echo > t-atexit.tmp
test-atexit 1
if test -f t-atexit.tmp; then
Exit 1
fi
Exit 0