diff options
Diffstat (limited to 'gettext-tools/tests/msgconv-2')
-rw-r--r--[-rwxr-xr-x] | gettext-tools/tests/msgconv-2 | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gettext-tools/tests/msgconv-2 b/gettext-tools/tests/msgconv-2 index e3f5232..936197c 100755..100644 --- a/gettext-tools/tests/msgconv-2 +++ b/gettext-tools/tests/msgconv-2 @@ -4,10 +4,6 @@ # 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. # @@ -22,12 +18,9 @@ msgid "exactly 2 input files required" msgstr "此功能需要恰好指定兩個輸入檔" EOF -tmpfiles="$tmpfiles mco-test2.out" : ${MSGCONV=msgconv} -${MSGCONV} -t Big5 -o mco-test2.out mco-test2.po -test $? = 0 || { rm -fr $tmpfiles; exit 1; } +${MSGCONV} -t Big5 -o mco-test2.out mco-test2.po || exit 1 -tmpfiles="$tmpfiles mco-test2.ok" cat <<\EOF > mco-test2.ok # Chinese translation for GNU gettext messages. # @@ -47,6 +40,4 @@ EOF ${DIFF} mco-test2.ok mco-test2.out >/dev/null result=$? -rm -fr $tmpfiles - exit $result |