Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-c-10
index bf6fdda..5c876b0 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C support: extraction of contexts.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-c-10.c"
 cat <<\EOF > xg-c-10.c
 // (KDE) The 1-argument i18n macro is a simple gettext without context.
 print (i18n ("help"));
@@ -16,16 +13,12 @@ print (tr ("file"));
 print (tr ("open", "File"));
 EOF
 
-tmpfiles="$tmpfiles xg-c-10.tmp.po xg-c-10.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --omit-header --no-location \
   --keyword=i18n:1 --keyword=i18n:1c,2 --keyword=tr:1 --keyword=tr:1,2c \
-  -d xg-c-10.tmp xg-c-10.c
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-c-10.tmp.po > xg-c-10.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-c-10.tmp xg-c-10.c || exit 1
+LC_ALL=C tr -d '\r' < xg-c-10.tmp.po > xg-c-10.po || exit 1
 
-tmpfiles="$tmpfiles xg-c-10.ok"
 cat <<EOF > xg-c-10.ok
 msgid "help"
 msgstr ""
@@ -46,6 +39,4 @@ EOF
 ${DIFF} xg-c-10.ok xg-c-10.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result