summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgcomm-23
blob: ccc0846d3223721f2391c4625753b58bf3c3d93a (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
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# "msgcomm INPUT INPUT" is equivalent to "msguniq INPUT"

tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15

tmpfiles="$tmpfiles mcomm-23.in1 mcomm-23.in2"
cp "$abs_srcdir"/msguniq-a.in mcomm-23.in1
cp "$abs_srcdir"/msguniq-a.in mcomm-23.in2

tmpfiles="$tmpfiles mcomm-23.tmp mcomm-23.out"
: ${MSGCOMM=msgcomm}
${MSGCOMM} -w 1000 -o mcomm-23.tmp mcomm-23.in1 mcomm-23.in2
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
LC_ALL=C tr -d '\r' < mcomm-23.tmp > mcomm-23.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

: ${DIFF=diff}
${DIFF} "$abs_srcdir"/msguniq-a.out mcomm-23.out
result=$?

rm -fr $tmpfiles

exit $result