Mercurial > hg > octave-nkf > gnulib-hg
view tests/test-atexit.sh @ 10159:873cd96bbc65
Fix small mistake from 2008-06-01.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 05 Jun 2008 00:56:52 +0200 |
parents | e227efdfe162 |
children | 27af701d5cf8 |
line wrap: on
line source
#!/bin/sh tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles t-atexit.tmp" # Check that an atexit handler is called when main() returns normally. echo > t-atexit.tmp ./test-atexit${EXEEXT} 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${EXEEXT} 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${EXEEXT} 1 if test -f t-atexit.tmp; then exit 1 fi rm -fr $tmpfiles exit 0