X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fgettext.git;a=blobdiff_plain;f=gettext-tools%2Ftests%2Fxgettext-c-5;h=14c90feb2799f082aa87f94ed950b8304f32c808;hp=a0bb7987e30e1efe2d833d39e16c1f81cb47c9cf;hb=2d875e23d946ff9bf4d3ac469e909b83486123a4;hpb=5d61132f836323aaf2879e04abc9d4056db248a2 diff --git a/gettext-tools/tests/xgettext-c-5 b/gettext-tools/tests/xgettext-c-5 index a0bb798..14c90fe 100755 --- a/gettext-tools/tests/xgettext-c-5 +++ b/gettext-tools/tests/xgettext-c-5 @@ -1,23 +1,16 @@ #! /bin/sh +. "${srcdir=.}/init.sh"; path_prepend_ . ../src # Test C support: comments. -tmpfiles="" -trap 'rm -fr $tmpfiles' 1 2 3 15 - -tmpfiles="$tmpfiles xg-c-5.in.cc" cat < xg-c-5.in.cc main(){printf(gettext/*puke*/(/*barf*/"Hello, " "World!" "\n")); } EOF -tmpfiles="$tmpfiles xg-c-5.tmp.po xg-c-5.po" : ${XGETTEXT=xgettext} -${XGETTEXT} --omit-header --no-location --add-comments -d xg-c-5.tmp xg-c-5.in.cc -test $? = 0 || { rm -fr $tmpfiles; exit 1; } -LC_ALL=C tr -d '\r' < xg-c-5.tmp.po > xg-c-5.po -test $? = 0 || { rm -fr $tmpfiles; exit 1; } +${XGETTEXT} --omit-header --no-location --add-comments -d xg-c-5.tmp xg-c-5.in.cc || exit 1 +LC_ALL=C tr -d '\r' < xg-c-5.tmp.po > xg-c-5.po || exit 1 -tmpfiles="$tmpfiles xg-c-5.ok" cat < xg-c-5.ok #. puke #. barf @@ -30,6 +23,4 @@ EOF ${DIFF} xg-c-5.ok xg-c-5.po result=$? -rm -fr $tmpfiles - exit $result