File: binary

package info (click to toggle)
diffutils 1%3A3.3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,176 kB
  • ctags: 5,911
  • sloc: ansic: 64,705; sh: 9,603; perl: 450; makefile: 155; 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 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