From d66197a3ca8355efa22f1d9c687f41eb30ae19ff Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Mon, 10 Mar 2014 18:13:28 +0900 Subject: tests: Remove unnecessary tempfile cleanup code Cleanup code like "rm -fr $tmpfiles" are no longer needed, since 'init.sh' takes care of that. --- gettext-tools/tests/xgettext-c-17 | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) mode change 100755 => 100644 gettext-tools/tests/xgettext-c-17 (limited to 'gettext-tools/tests/xgettext-c-17') diff --git a/gettext-tools/tests/xgettext-c-17 b/gettext-tools/tests/xgettext-c-17 old mode 100755 new mode 100644 index 169e020..0789c04 --- a/gettext-tools/tests/xgettext-c-17 +++ b/gettext-tools/tests/xgettext-c-17 @@ -3,10 +3,6 @@ # Test C++ support: test kde-format and format recognition heuristics. -tmpfiles="" -trap 'rm -fr $tmpfiles' 1 2 3 15 - -tmpfiles="$tmpfiles xg-c-17.cc" cat <<\EOF > xg-c-17.cc /* When xgettext has no info, it flags both c-format and kde-format, based on the heuristics. */ @@ -18,15 +14,11 @@ gettext ("used time: %1m %2s"); gettext ("remaining time: %1m %2s"); EOF -tmpfiles="$tmpfiles xg-c-17.tmp.po xg-c-17.po" : ${XGETTEXT=xgettext} ${XGETTEXT} --omit-header --no-location -d xg-c-17.tmp --language=C++ --kde \ - xg-c-17.cc -test $? = 0 || { rm -fr $tmpfiles; exit 1; } -LC_ALL=C tr -d '\r' < xg-c-17.tmp.po > xg-c-17.po -test $? = 0 || { rm -fr $tmpfiles; exit 1; } + xg-c-17.cc || exit 1 +LC_ALL=C tr -d '\r' < xg-c-17.tmp.po > xg-c-17.po || exit 1 -tmpfiles="$tmpfiles xg-c-17.ok" cat < xg-c-17.ok #, c-format, kde-format msgid "used time: %1m %2s" @@ -41,6 +33,4 @@ EOF ${DIFF} xg-c-17.ok xg-c-17.po result=$? -rm -fr $tmpfiles - exit $result -- cgit v1.1