view tests/test-atexit.sh @ 40221:8c1a17df67e0

tests: Prepare for using valgrind. tests/*.sh: Invoke all test programs through ${CHECKER}. tests/*/*.sh: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 10 Mar 2019 11:32:11 +0100
parents c01cf90644e5
children
line wrap: on
line source

#!/bin/sh
: ${srcdir=.}
. "$srcdir/init.sh"; path_prepend_ .

# Check that an atexit handler is called when main() returns normally.
echo > t-atexit.tmp
${CHECKER} 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
${CHECKER} 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
${CHECKER} test-atexit 1
if test -f t-atexit.tmp; then
  Exit 1
fi

Exit 0