Mercurial > hg > octave-kai > gnulib-hg
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 |
rev | line source |
---|---|
7869 | 1 #!/bin/sh |
2 | |
3 tmpfiles="" | |
4 trap 'rm -fr $tmpfiles' 1 2 3 15 | |
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 | 11 |
12 rm -fr $tmpfiles | |
13 | |
14 exit 0 |