mirror of
https://https.git.savannah.gnu.org/git/diffutils.git
synced 2026-01-27 01:44:20 +00:00
20 lines
379 B
Bash
20 lines
379 B
Bash
#!/bin/sh
|
|
# small examples
|
|
|
|
test "$VERBOSE" = yes && set -x
|
|
: ${srcdir=.}
|
|
. "$srcdir/init.sh"
|
|
|
|
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
|