diff options
Diffstat (limited to 'gnulib-tests/test-binary-io.sh')
-rwxr-xr-x | gnulib-tests/test-binary-io.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnulib-tests/test-binary-io.sh b/gnulib-tests/test-binary-io.sh new file mode 100755 index 0000000..33e128c --- /dev/null +++ b/gnulib-tests/test-binary-io.sh @@ -0,0 +1,11 @@ +#!/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 |