annotate tests/test-binary-io.sh @ 40221:8c1a17df67e0

tests: Prepare for using valgrind. tests/*.sh: Invoke all test programs through ${CHECKER}. tests/*/*.sh: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 10 Mar 2019 11:32:11 +0100
parents 7b67f85ec2c9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7869
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 #!/bin/sh
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 tmpfiles=""
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 trap 'rm -fr $tmpfiles' 1 2 3 15
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5
18701
7b67f85ec2c9 xbinary-io: rename from xsetmode
Paul Eggert <eggert@cs.ucla.edu>
parents: 18700
diff changeset
6 tmpfiles="$tmpfiles t-bin-out0.tmp t-bin-out1.tmp"
40221
8c1a17df67e0 tests: Prepare for using valgrind.
Bruno Haible <bruno@clisp.org>
parents: 18701
diff changeset
7 ${CHECKER} ./test-binary-io${EXEEXT} 1 > t-bin-out1.tmp || exit 1
16851
2ef869fa79b4 binary-io: Define set_binary_mode function.
Bruno Haible <bruno@clisp.org>
parents: 16123
diff changeset
8 cmp t-bin-out0.tmp t-bin-out1.tmp > /dev/null || exit 1
7869
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 rm -fr $tmpfiles
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 exit 0