summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgfmt-6
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@gnu.org>2014-03-10 18:13:28 +0900
committerDaiki Ueno <ueno@gnu.org>2014-03-10 18:24:15 +0900
commitd66197a3ca8355efa22f1d9c687f41eb30ae19ff (patch)
treec4acc964d617b04629a3a3bbb7632f34cdb35b9c /gettext-tools/tests/msgfmt-6
parent0e79f41006d2b4d69dd3eb57c0202faa6c1fba44 (diff)
downloadexternal_gettext-d66197a3ca8355efa22f1d9c687f41eb30ae19ff.zip
external_gettext-d66197a3ca8355efa22f1d9c687f41eb30ae19ff.tar.gz
external_gettext-d66197a3ca8355efa22f1d9c687f41eb30ae19ff.tar.bz2
tests: Remove unnecessary tempfile cleanup code
Cleanup code like "rm -fr $tmpfiles" are no longer needed, since 'init.sh' takes care of that.
Diffstat (limited to 'gettext-tools/tests/msgfmt-6')
-rw-r--r--[-rwxr-xr-x]gettext-tools/tests/msgfmt-67
1 files changed, 0 insertions, 7 deletions
diff --git a/gettext-tools/tests/msgfmt-6 b/gettext-tools/tests/msgfmt-6
index f2a0837..aededbc 100755..100644
--- a/gettext-tools/tests/msgfmt-6
+++ b/gettext-tools/tests/msgfmt-6
@@ -6,10 +6,6 @@
# Note: On AIX 3 with xlc, this test fails. To make it work, add "-qcheck"
# to the CFLAGS, or use gcc.
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles mf-6.po"
cat <<EOF > mf-6.po
msgid ""
msgstr ""
@@ -23,7 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(1 + (1 / (n - 257)));\n"
EOF
-tmpfiles="$tmpfiles mf-6.mo core *.core"
: ${MSGFMT=msgfmt}
${MSGFMT} --check -o mf-6.mo mf-6.po 2>/dev/null
# Exit code must be 1.
@@ -32,6 +27,4 @@ ${MSGFMT} --check -o mf-6.mo mf-6.po 2>/dev/null
test $? = 1
result=$?
-rm -fr $tmpfiles
-
exit $result