mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
44 lines
848 B
Bash
44 lines
848 B
Bash
#! /bin/sh
|
|
|
|
# Duplicates are also fatal in obsolete marked entries (cf. msgmerge-3).
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles mm-test9.in1 mm-test9.in2"
|
|
cat <<EOF > mm-test9.in1
|
|
msgid "2" msgstr "2"
|
|
msgid "3" msgstr "3"
|
|
#~ msgid
|
|
#~ "2"
|
|
#~ msgstr
|
|
#~ "ha ha"
|
|
EOF
|
|
|
|
cat <<EOF > mm-test9.in2
|
|
msgid "1" msgstr ""
|
|
msgid "2" msgstr ""
|
|
msgid "3" msgstr ""
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles mm-test9.err"
|
|
: ${MSGMERGE=msgmerge}
|
|
LC_MESSAGES=C LC_ALL= \
|
|
${MSGMERGE} -q mm-test9.in1 mm-test9.in2 -o /dev/null \
|
|
2>&1 | grep -v '^==' > mm-test9.err
|
|
|
|
tmpfiles="$tmpfiles mm-test9.ok"
|
|
cat << EOF > mm-test9.ok
|
|
mm-test9.in1:3: duplicate message definition
|
|
mm-test9.in1:1: ...this is the location of the first definition
|
|
msgmerge: found 1 fatal error
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mm-test9.ok mm-test9.err
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|