view tests/test-binary-io.sh @ 8412:6db7303a6033

Choose better temporary filenames.
author Bruno Haible <bruno@clisp.org>
date Sun, 11 Mar 2007 00:51:51 +0000
parents d612855198c2
children 25b04be44d9e
line wrap: on
line source

#!/bin/sh

tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15

tmpfiles="$tmpfiles t-bin-out1.tmp t-bin-out2.tmp"
./test-binary-io${EXEEXT} > t-bin-out1.tmp || exit 1

rm -fr $tmpfiles

exit 0