summaryrefslogtreecommitdiffstats
path: root/tests/msgcomm-23
blob: 8a76edd188c6ae3f3ce9f0bc2b0854d4cc9fe162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

# "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 ${top_srcdir}/tests/msguniq-1.in mcomm-23.in1
cp ${top_srcdir}/tests/msguniq-1.in mcomm-23.in2

tmpfiles="$tmpfiles mcomm-23.out"
: ${MSGCOMM=msgcomm}
${MSGCOMM} -w 1000 mcomm-23.in1 mcomm-23.in2 -o mcomm-23.out

: ${DIFF=diff}
${DIFF} ${top_srcdir}/tests/msguniq-1.out mcomm-23.out
result=$?

rm -fr $tmpfiles

exit $result