summaryrefslogtreecommitdiff
path: root/tests/binary
blob: e163f014497b1468561a40c0a721c5b01aafeb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# small examples

. "${srcdir=.}/init.sh"; path_prepend_ ../src

printf 'Binary files - and /dev/null differ\n' > out-exp || fail_ setup

fail=0

printf '\0'|diff - /dev/null > out 2> err

# diff must exit with status 2, stdout as above, and no stderr.
test $? = 2 || fail=1
compare out out-exp || fail=1
compare err /dev/null || fail=1

Exit $fail