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/msgcomm-1 | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) mode change 100755 => 100644 gettext-tools/tests/msgcomm-1 (limited to 'gettext-tools/tests/msgcomm-1') diff --git a/gettext-tools/tests/msgcomm-1 b/gettext-tools/tests/msgcomm-1 old mode 100755 new mode 100644 index 8eaabb0..52b8e0a --- a/gettext-tools/tests/msgcomm-1 +++ b/gettext-tools/tests/msgcomm-1 @@ -3,10 +3,6 @@ # Test --more-than=0 option. -tmpfiles="" -trap 'rm -fr $tmpfiles' 1 2 3 15 - -tmpfiles="$tmpfiles mcomm-test1.in1 mcomm-test1.in2" cat < mcomm-test1.in1 #: first.c:123 msgid "1" @@ -19,14 +15,10 @@ msgid "2" msgstr "2x" EOF -tmpfiles="$tmpfiles mcomm-test1.tmp mcomm-test1.out" : ${MSGCOMM=msgcomm} -${MSGCOMM} --more-than=0 -o mcomm-test1.tmp mcomm-test1.in1 mcomm-test1.in2 -test $? = 0 || { rm -fr $tmpfiles; exit 1; } -LC_ALL=C tr -d '\r' < mcomm-test1.tmp > mcomm-test1.out -test $? = 0 || { rm -fr $tmpfiles; exit 1; } +${MSGCOMM} --more-than=0 -o mcomm-test1.tmp mcomm-test1.in1 mcomm-test1.in2 || exit 1 +LC_ALL=C tr -d '\r' < mcomm-test1.tmp > mcomm-test1.out || exit 1 -tmpfiles="$tmpfiles mcomm-test1.ok" cat << EOF > mcomm-test1.ok #: first.c:123 msgid "1" @@ -41,6 +33,4 @@ EOF ${DIFF} mcomm-test1.ok mcomm-test1.out result=$? -rm -fr $tmpfiles - exit $result -- cgit v1.1