NetBSD/gnu/dist/gettext/gettext-tools/tests/msgconv-2

52 lines
1.2 KiB
Bash
Raw Blame History

#! /bin/sh
# Test conversion from UTF-8 to BIG5.
# Test that encoding names are case insensitive.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles mco-test2.po"
cat <<\EOF > mco-test2.po
# Chinese translation for GNU gettext messages.
#
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/msgcmp.c:155 src/msgmerge.c:273
msgid "exactly 2 input files required"
msgstr "甇文<E79487><E69687><EFBFBD><EFBFBD><E996AC>憟賣<E6869F>摰𡁜<E691B0><F0A1819C>贝撓<E8B49D><EFBFBD>"
EOF
tmpfiles="$tmpfiles mco-test2.out"
: ${MSGCONV=msgconv}
${MSGCONV} -t Big5 mco-test2.po -o mco-test2.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles mco-test2.ok"
cat <<\EOF > mco-test2.ok
# Chinese translation for GNU gettext messages.
#
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=BIG5\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/msgcmp.c:155 src/msgmerge.c:273
msgid "exactly 2 input files required"
msgstr "此功能需要恰好指定兩個輸入檔"
EOF
: ${DIFF=diff}
# Redirect stdout, so as not to fill the user's screen with non-ASCII bytes.
${DIFF} mco-test2.ok mco-test2.out >/dev/null
result=$?
rm -fr $tmpfiles
exit $result