Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-c-12
index b138dcb..2e9d7fd 100755 (executable)
@@ -1,24 +1,17 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C support: valid but unlikely C format strings are _not_ marked as
 # c-format by default.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-c-12.c"
 cat <<\EOF > xg-c-12.c
 gettext ("%1% on, %2% off");
 EOF
 
-tmpfiles="$tmpfiles xg-c-12.tmp.po xg-c-12.po"
 : ${XGETTEXT=xgettext}
-${XGETTEXT} --omit-header --no-location -d xg-c-12.tmp xg-c-12.c
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-c-12.tmp.po > xg-c-12.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+${XGETTEXT} --omit-header --no-location -d xg-c-12.tmp xg-c-12.c || exit 1
+LC_ALL=C tr -d '\r' < xg-c-12.tmp.po > xg-c-12.po || exit 1
 
-tmpfiles="$tmpfiles xg-c-12.ok"
 cat <<EOF > xg-c-12.ok
 msgid "%1% on, %2% off"
 msgstr ""
@@ -28,6 +21,4 @@ EOF
 ${DIFF} xg-c-12.ok xg-c-12.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result