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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
#!/bin/sh
# This is a lsdiff(1) testcase.
# Test: Different context output styles.
. ${top_srcdir-.}/tests/common.sh
cat << EOF > diff1
*** file.orig Wed Mar 20 10:08:24 2002
--- file Wed Mar 20 10:08:24 2002
***************
*** 1,7 ****
a
b
c
! d
e
f
g
--- 1,7 ----
a
b
c
! D
e
f
g
***************
*** 9,15 ****
i
j
k
! l
m
n
o
--- 9,15 ----
i
j
k
! L
m
n
o
***************
*** 21,23 ****
--- 21,26 ----
u
v
w
+ x
+ y
+ z
EOF
(IFS=\
first=1
while read line;
do
if test "x$line" = "x***************"
then
if test $first -eq 0
then
continue
fi
first=0
fi
echo "$line"
done) < diff1 > diff2
${LSDIFF} diff1 2>errors >index1 || exit 1
[ -s errors ] && exit 1
${LSDIFF} diff2 2>errors >index2 || exit 1
[ -s errors ] && exit 1
cat << EOF | cmp - index1 || exit 1
file
EOF
cat << EOF | cmp - index2 || exit 1
file
EOF
|