Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-python-4
index 8b7e626..49d1c12 100755 (executable)
@@ -1,11 +1,8 @@
 #!/bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test Python support: --add-comments option.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-py-4.py"
 cat <<\EOF > xg-py-4.py
 # a
 string = # b
@@ -15,15 +12,11 @@ _( # d
 );
 EOF
 
-tmpfiles="$tmpfiles xg-py-4.tmp.po xg-py-4.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --add-comments --omit-header --no-location --keyword=_ \
-  -d xg-py-4.tmp xg-py-4.py
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-py-4.tmp.po > xg-py-4.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-py-4.tmp xg-py-4.py || exit 1
+LC_ALL=C tr -d '\r' < xg-py-4.tmp.po > xg-py-4.po || exit 1
 
-tmpfiles="$tmpfiles xg-py-4.ok"
 cat <<EOF > xg-py-4.ok
 #. a
 #. b
@@ -37,6 +30,4 @@ EOF
 ${DIFF} xg-py-4.ok xg-py-4.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result