summaryrefslogtreecommitdiff
path: root/gl/tests/test-binary-io.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gl/tests/test-binary-io.sh')
-rwxr-xr-xgl/tests/test-binary-io.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/gl/tests/test-binary-io.sh b/gl/tests/test-binary-io.sh
deleted file mode 100755
index c4dd6e9295..0000000000
--- a/gl/tests/test-binary-io.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles t-bin-out0.tmp t-bin-out1.tmp t-bin-out2.tmp"
-./test-binary-io${EXEEXT} 1 > t-bin-out1.tmp || exit 1
-cmp t-bin-out0.tmp t-bin-out1.tmp > /dev/null || exit 1
-./test-binary-io${EXEEXT} 2 > t-bin-out2.tmp || exit 1
-cmp t-bin-out0.tmp t-bin-out2.tmp > /dev/null || exit 1
-
-rm -fr $tmpfiles
-
-exit 0