view tests/test-atexit.sh @ 40207:053dfcf64bef

autoupdate
author Karl Berry <karl@freefriends.org>
date Mon, 04 Mar 2019 08:35:35 -0800
parents c01cf90644e5
children 8c1a17df67e0
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
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