Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / msginit-1
index 9cf6928..71754d2 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test plural count for locales with nplurals != 2.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles mi-test1.pot"
 cat <<\EOF > mi-test1.pot
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
@@ -40,16 +37,13 @@ msgid "%s is replaced by %s."
 msgstr ""
 EOF
 
-tmpfiles="$tmpfiles mi-test1.tmp mi-test1.out mi-test1.err"
 : ${MSGINIT=msginit}
 ${MSGINIT} -i mi-test1.pot -l ga_IE --no-translator -o mi-test1.tmp 2>mi-test1.err
-test $? = 0 || { cat mi-test1.err 1>&2; rm -fr $tmpfiles; exit 1; }
+test $? = 0 || { cat mi-test1.err 1>&2; exit 1; }
 # The charset stored in the header entry is the locale encoding of the gl_IE
 # locale, which is system dependent, or ASCII if the locale does not exist.
-sed -e '1,10d' -e 's/\(ISO-8859-1\|CP1252\|UTF-8\)/ASCII/g' < mi-test1.tmp | LC_ALL=C tr -d '\r' > mi-test1.out
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+sed -e '1,10d' -e 's/\(ISO-8859-1\|CP1252\|UTF-8\)/ASCII/g' < mi-test1.tmp | LC_ALL=C tr -d '\r' > mi-test1.out || exit 1
 
-tmpfiles="$tmpfiles mi-test1.ok"
 cat <<\EOF > mi-test1.ok
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -79,6 +73,4 @@ EOF
 ${DIFF} mi-test1.ok mi-test1.out
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result