blob: 1eb7acd9247a36f727b58c0f774529bf90ec96e9 [file] [log] [blame]
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
# Test --omit-header option when there is a header.
cat <<EOF > mcomm-test5.in1
msgid ""
msgstr ""
"Project-Id-Version: GNU one 1.2.3\n"
"POT-Creation-Date: 2000-12-11 20:49+0100\n"
"PO-Revision-Date: 2000-03-18 15:25+01:00\n"
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: first.c:123
msgid "1"
msgstr "1x"
EOF
cat <<EOF > mcomm-test5.in2
#: hunt.c:759
msgid "2"
msgstr "2x"
EOF
: ${MSGCOMM=msgcomm}
${MSGCOMM} --more-than=0 --omit-header -o mcomm-test5.tmp \
mcomm-test5.in1 mcomm-test5.in2 || Exit 1
LC_ALL=C tr -d '\r' < mcomm-test5.tmp > mcomm-test5.out || Exit 1
cat << EOF > mcomm-test5.ok
#: first.c:123
msgid "1"
msgstr "1x"
#: hunt.c:759
msgid "2"
msgstr "2x"
EOF
: ${DIFF=diff}
${DIFF} mcomm-test5.ok mcomm-test5.out
result=$?
exit $result