mirror of
https://https.git.savannah.gnu.org/git/diffutils.git
synced 2026-01-29 10:54:30 +00:00
* tests/help-version: Use one line: "${srcdir=.}/init.sh"; ...
* tests/basic: Likewise.
* tests/binary: Likewise.
* tests/colliding-file-names: Likewise.
* tests/excess-slash: Likewise.
* tests/function-line-vs-leading-space: Likewise.
* tests/help-version: Likewise.
* tests/label-vs-func: Likewise.
* tests/no-newline-at-eof: Likewise.
* tests/stdin: Likewise.
18 lines
359 B
Bash
18 lines
359 B
Bash
#!/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
|