File: binary

package info (click to toggle)
diffutils 1%3A3.5-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 12,384 kB
  • ctags: 6,062
  • sloc: ansic: 70,642; sh: 10,684; perl: 450; makefile: 204; sed: 16
file content (17 lines) | stat: -rwxr-xr-x 359 bytes parent folder | download
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 1, stdout as above, and no stderr.
test $? = 1 || fail=1
compare out-exp out || fail=1
compare /dev/null err || fail=1

Exit $fail