mirror of
https://https.git.savannah.gnu.org/git/diffutils.git
synced 2026-01-27 09:54:25 +00:00
* tests/basic: Likewise. * tests/binary: Likewise. * tests/function-line-vs-leading-space: Likewise. * tests/label-vs-func: Likewise. * tests/stdin: Likewise.
19 lines
369 B
Bash
19 lines
369 B
Bash
#!/bin/sh
|
|
# small examples
|
|
|
|
: ${srcdir=.}
|
|
. "$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
|