msgfmt-9   [plain text]


#! /bin/sh

# Duplicates are also fatal in obsolete marked entries.

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

tmpfiles="$tmpfiles mf-test9.in1"
cat <<EOF > mf-test9.in1
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: msgfmt test 9\n"
"PO-Revision-Date: 1996-04-05 19:47+0200\n"
"Last-Translator: ABC DEF <abc@gnu.uucp>\n"
"Language-Team: test <test@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#
msgid "2" msgstr "2"
msgid "3" msgstr "3"
#~ msgid
#~ "2"
#~ msgstr
#~ "ha ha"
EOF

tmpfiles="$tmpfiles mf-test9.err"
: ${MSGFMT=msgfmt}
LC_MESSAGES=C LC_ALL= \
${MSGFMT} --verbose --check mf-test9.in1 -o /dev/null \
    2>&1 | grep -v '^==' > mf-test9.err

tmpfiles="$tmpfiles mf-test9.ok"
cat << EOF > mf-test9.ok
mf-test9.in1:17: duplicate message definition
mf-test9.in1:15: ...this is the location of the first definition
msgfmt: found 1 fatal error
EOF

: ${DIFF=diff}
${DIFF} mf-test9.ok mf-test9.err
result=$?

rm -fr $tmpfiles

exit $result