1
0
Fork 0

Adding upstream version 9.7.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
Daniel Baumann 2025-06-21 07:57:52 +02:00
parent 4b8dc12adb
commit c08a8f7410
Signed by: daniel.baumann
GPG key ID: BCC918A2ABD66424
3561 changed files with 1457043 additions and 0 deletions

12
gnulib-tests/test-binary-io.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
tmpfiles=""
trap 'rm -fr $tmpfiles' HUP INT QUIT TERM
tmpfiles="$tmpfiles t-bin-out0.tmp t-bin-out1.tmp"
${CHECKER} ./test-binary-io${EXEEXT} 1 > t-bin-out1.tmp || exit 1
cmp t-bin-out0.tmp t-bin-out1.tmp > /dev/null || exit 1
rm -fr $tmpfiles
exit 0