Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-c-18
index 62457a2..deac1f0 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C support: extraction of 'range:' flags.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-c-18.c"
 cat <<\EOF > xg-c-18.c
 if (days > 7 && days < 14)
   /* xgettext: range: 1..6 */
@@ -14,14 +11,10 @@ if (days > 7 && days < 14)
           days - 7);
 EOF
 
-tmpfiles="$tmpfiles xg-c-18.tmp.po xg-c-18.po"
 : ${XGETTEXT=xgettext}
-${XGETTEXT} --omit-header --no-location -d xg-c-18.tmp xg-c-18.c
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-c-18.tmp.po > xg-c-18.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+${XGETTEXT} --omit-header --no-location -d xg-c-18.tmp xg-c-18.c || exit 1
+LC_ALL=C tr -d '\r' < xg-c-18.tmp.po > xg-c-18.po || exit 1
 
-tmpfiles="$tmpfiles xg-c-18.ok"
 cat <<EOF > xg-c-18.ok
 #, c-format, range: 1..6
 msgid "one week and one day"
@@ -34,6 +27,4 @@ EOF
 ${DIFF} xg-c-18.ok xg-c-18.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result