summaryrefslogtreecommitdiff
path: root/tests/new-file
blob: e3a61da3e2bdbffb06883e0cc555943fdbe21c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
# Test --new-file (-N) and --unidirectional-new-file.

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

fail=0

echo a > a || fail=1

echo '0a1
> a' > exp || fail=1

returns_ 1 diff -N b - < a > out || fail=1
compare exp out || fail=1

returns_ 1 diff --unidirectional-new-file b - < a > out || fail=1
compare exp out || fail=1

echo '1d0
< a' > exp || fail=1

returns_ 1 diff -N - b < a > out || fail=1
compare exp out || fail=1

returns_ 2 diff --unidirectional-new-file - b < a > out || fail=1

Exit $fail