#! /bin/sh # Test conversion from BIG5 to UTF-8. tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles mco-test1.po" cat <<\EOF > mco-test1.po # 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 "¦¹¥\¯à»Ýn«ê¦n«ü©w¨âÓ¿é¤JÀÉ" EOF tmpfiles="$tmpfiles mco-test1.out" : ${MSGCONV=msgconv} ${MSGCONV} --to-code=UTF-8 -o mco-test1.out mco-test1.po test $? = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles mco-test1.ok" cat <<\EOF > mco-test1.ok # 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 "æ¤åè½éè¦æ°å¥½æå®å ©åè¼¸å ¥æª" EOF : ${DIFF=diff} # Redirect stdout, so as not to fill the user's screen with non-ASCII bytes. ${DIFF} mco-test1.ok mco-test1.out >/dev/null result=$? rm -fr $tmpfiles exit $result |