annotate tests/test-binary-io.sh @ 17476:6057744acd2c default tip master

autoupdate
author Karl Berry <karl@freefriends.org>
date Fri, 16 Aug 2013 06:32:22 -0700
parents 2ef869fa79b4
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
16851
2ef869fa79b4 binary-io: Define set_binary_mode function.
Bruno Haible <bruno@clisp.org>
parents: 16123
diff changeset
6 tmpfiles="$tmpfiles t-bin-out0.tmp t-bin-out1.tmp t-bin-out2.tmp"
2ef869fa79b4 binary-io: Define set_binary_mode function.
Bruno Haible <bruno@clisp.org>
parents: 16123
diff changeset
7 ./test-binary-io${EXEEXT} 1 > t-bin-out1.tmp || exit 1
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
2ef869fa79b4 binary-io: Define set_binary_mode function.
Bruno Haible <bruno@clisp.org>
parents: 16123
diff changeset
9 ./test-binary-io${EXEEXT} 2 > t-bin-out2.tmp || exit 1
2ef869fa79b4 binary-io: Define set_binary_mode function.
Bruno Haible <bruno@clisp.org>
parents: 16123
diff changeset
10 cmp t-bin-out0.tmp t-bin-out2.tmp > /dev/null || exit 1
7869
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 rm -fr $tmpfiles
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
d612855198c2 Test for the binary-io module.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 exit 0