* lib/string_.h: If the gnulib module XYZ is not present, undefine
[gnulib.git] / tests / test-binary-io.sh
1 #!/bin/sh
2
3 tmpfiles=""
4 trap 'rm -fr $tmpfiles' 1 2 3 15
5
6 tmpfiles="$tmpfiles output.tmp output2.tmp"
7 ./test-binary-io${EXEEXT} > output.tmp || exit 1
8
9 rm -fr $tmpfiles
10
11 exit 0