X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fgettext.git;a=blobdiff_plain;f=gettext-tools%2Ftests%2Fmsgconv-2;h=936197cb4b1c198ec566bbd0fe6e07bf1ecdf746;hp=850a0431a66ac906d4daff3c49620cb381d01022;hb=2d875e23d946ff9bf4d3ac469e909b83486123a4;hpb=5d61132f836323aaf2879e04abc9d4056db248a2 diff --git a/gettext-tools/tests/msgconv-2 b/gettext-tools/tests/msgconv-2 index 850a043..936197c 100755 --- a/gettext-tools/tests/msgconv-2 +++ b/gettext-tools/tests/msgconv-2 @@ -1,12 +1,9 @@ #! /bin/sh +. "${srcdir=.}/init.sh"; path_prepend_ . ../src # 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. # @@ -21,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. # @@ -46,6 +40,4 @@ EOF ${DIFF} mco-test2.ok mco-test2.out >/dev/null result=$? -rm -fr $tmpfiles - exit $result