65 lines
1.4 KiB
Bash
65 lines
1.4 KiB
Bash
#! /bin/sh
|
|
|
|
# Test --no-location option when there is a header.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles mcomm-test6.in1 mcomm-test6.in2"
|
|
cat <<EOF > mcomm-test6.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-test6.in2
|
|
#: hunt.c:759
|
|
msgid "2"
|
|
msgstr "2x"
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles mcomm-test6.out"
|
|
: ${MSGCOMM=msgcomm}
|
|
${MSGCOMM} --more-than=0 --no-location -o mcomm-test6.out \
|
|
mcomm-test6.in1 mcomm-test6.in2
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
tmpfiles="$tmpfiles mcomm-test6.ok"
|
|
cat << EOF > mcomm-test6.ok
|
|
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"
|
|
|
|
msgid "1"
|
|
msgstr "1x"
|
|
|
|
msgid "2"
|
|
msgstr "2x"
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mcomm-test6.ok mcomm-test6.out
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|