Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-c-11
index 1dd854f..2019eb8 100755 (executable)
@@ -1,12 +1,9 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C support: extraction of contexts, disambiguating according to the
 # argument count.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-c-11.c"
 cat <<\EOF > xg-c-11.c
 // (KDE) The 1-argument i18n macro is a simple gettext without context.
 print (i18n ("help"));
@@ -16,16 +13,12 @@ print (i18n ("Help", "about"));
 print (i18n ("error", "errors", 7));
 EOF
 
-tmpfiles="$tmpfiles xg-c-11.tmp.po xg-c-11.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --omit-header --no-location \
   --keyword=i18n:1 --keyword=i18n:1c,2,2t --keyword=i18n:1,2,3t \
-  -d xg-c-11.tmp xg-c-11.c
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-c-11.tmp.po > xg-c-11.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-c-11.tmp xg-c-11.c || exit 1
+LC_ALL=C tr -d '\r' < xg-c-11.tmp.po > xg-c-11.po || exit 1
 
-tmpfiles="$tmpfiles xg-c-11.ok"
 cat <<EOF > xg-c-11.ok
 msgid "help"
 msgstr ""
@@ -44,6 +37,4 @@ EOF
 ${DIFF} xg-c-11.ok xg-c-11.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result