#! /bin/sh

# Test --add-location=file option.

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

tmpfiles="$tmpfiles men-test4.po men-test4.ok men-test4.out men-test4.tmp"
cat <<EOF > men-test4.po
# HEADER.
#
msgid ""
msgstr ""
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\n"

#: foo:1
msgid "height must be positive"
msgstr ""

#: foo:2
msgid "color cannot be transparent"
msgstr "colour cannot be transparent"

#: bar:3
msgid "width must be positive"
msgstr ""

#: baz:4
msgid "%d error"
msgid_plural "%d errors"
msgstr[0] ""
msgstr[1] ""
EOF

: ${MSGEN=msgen}
${MSGEN} --add-location=file -o men-test4.tmp men-test4.po || exit 1
LC_ALL=C tr -d '\r' < men-test4.tmp > men-test4.out || exit 1

cat <<EOF > men-test4.ok
# HEADER.
#
msgid ""
msgstr ""
"Content-Type: text/plain; charset=ASCII\n"
"Content-Transfer-Encoding: 8bit\n"

#: foo
msgid "height must be positive"
msgstr "height must be positive"

#: foo
msgid "color cannot be transparent"
msgstr "colour cannot be transparent"

#: bar
msgid "width must be positive"
msgstr "width must be positive"

#: baz
msgid "%d error"
msgid_plural "%d errors"
msgstr[0] "%d error"
msgstr[1] "%d errors"
EOF

: ${DIFF=diff -b}
${DIFF} men-test4.ok men-test4.out
result=$?

rm -fr $tmpfiles

exit $result
