Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / msgfmt-9
index 4e77327..316bacf 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Duplicates are also fatal in obsolete marked entries.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles mf-test9.in1"
 cat <<EOF > mf-test9.in1
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR Free Software Foundation, Inc.
@@ -29,13 +26,11 @@ msgid "3" msgstr "3"
 #~ "ha ha"
 EOF
 
-tmpfiles="$tmpfiles mf-test9.err"
 : ${MSGFMT=msgfmt}
 LC_MESSAGES=C LC_ALL= \
 ${MSGFMT} --verbose --check mf-test9.in1 -o /dev/null \
     2>&1 | grep -v '^==' | sed -e 's|[^ ]*\\msgfmt\.exe|msgfmt|' -e 's|^msgfmt\.exe|msgfmt|' | LC_ALL=C tr -d '\r' > mf-test9.err
 
-tmpfiles="$tmpfiles mf-test9.ok"
 cat << EOF > mf-test9.ok
 mf-test9.in1:17: duplicate message definition...
 mf-test9.in1:15: ...this is the location of the first definition
@@ -46,6 +41,4 @@ EOF
 ${DIFF} mf-test9.ok mf-test9.err
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result