File: empty-file

package info (click to toggle)
diffutils 1%3A3.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,980 kB
  • sloc: ansic: 116,841; sh: 12,881; perl: 535; makefile: 233; sed: 16
file content (23 lines) | stat: -rwxr-xr-x 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# Test empty files

. "${srcdir=.}/init.sh"; path_prepend_ ../src

fail=0
mkdir a b
touch a/test
echo 'content' > b/test

returns_ 1 diff -Naur a b >out || fail=1
cat <<EOF > expected || framework_failure_
diff -Naur a/test b/test
--- a/test
+++ b/test
@@ -0,0 +1 @@
+content
EOF
# Remove date and time.
sed -e 's/^\([-+*][-+*][-+*] [^	]*\)	.*/\1/' out > k; mv k out
compare expected out || fail=1

Exit $fail