summaryrefslogtreecommitdiff
path: root/tests/binary
blob: d7b3943cc3cd4ca13a62d92be817ab8e7b251173 (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-exp out || fail=1
compare /dev/null err || fail=1

Exit $fail