Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-c-9
index 242df17..340e88a 100755 (executable)
@@ -1,11 +1,8 @@
 #!/bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C support: --add-comments option.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-c-9.c"
 cat <<EOF > xg-c-9.c
 // This comment will not be extracted.
 print (gettext ("help"));
@@ -23,15 +20,11 @@ print (gettext ("there is not enough"
 "verbose string"));
 EOF
 
-tmpfiles="$tmpfiles xg-c-9.tmp.po xg-c-9.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --omit-header --no-location --add-comments=TRANSLATORS: \
-  -d xg-c-9.tmp xg-c-9.c
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-c-9.tmp.po > xg-c-9.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-c-9.tmp xg-c-9.c || exit 1
+LC_ALL=C tr -d '\r' < xg-c-9.tmp.po > xg-c-9.po || exit 1
 
-tmpfiles="$tmpfiles xg-c-9.ok"
 cat <<EOF > xg-c-9.ok
 msgid "help"
 msgstr ""
@@ -60,6 +53,4 @@ EOF
 ${DIFF} xg-c-9.ok xg-c-9.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result