NetBSD/gnu/dist/gettext/gettext-tools/tests/msgmerge-compendium-2

55 lines
830 B
Bash

#! /bin/sh
# Test compendium option with fuzziness.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles mm-c-2.in1 mm-c-2.com mm-c-2.pot"
cat <<EOF > mm-c-2.in1
#: file.c:123
msgid "1"
msgstr "1x"
EOF
cat <<EOF > mm-c-2.com
#: file.c:345
msgid "one, two, three"
msgstr "1, 2, 3"
EOF
cat <<EOF > mm-c-2.pot
#: file.c:123
msgid "1"
msgstr ""
#: file.c:345
msgid "one, two, three..."
msgstr ""
EOF
tmpfiles="$tmpfiles mm-c-2.out"
: ${MSGMERGE=msgmerge}
${MSGMERGE} -q -C mm-c-2.com mm-c-2.in1 mm-c-2.pot -o mm-c-2.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles mm-c-2.ok"
cat << EOF > mm-c-2.ok
#: file.c:123
msgid "1"
msgstr "1x"
#: file.c:345
#, fuzzy
msgid "one, two, three..."
msgstr "1, 2, 3"
EOF
: ${DIFF=diff}
${DIFF} mm-c-2.ok mm-c-2.out
result=$?
rm -fr $tmpfiles
exit $result