Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-elisp-1
index e008619..7d73dbb 100755 (executable)
@@ -1,11 +1,8 @@
 #!/bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test EmacsLisp support: --add-comments option.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-el-1.el"
 cat <<EOF > xg-el-1.el
 ; This comment will not be extracted.
 (princ (_ "help"))
@@ -18,15 +15,11 @@ cat <<EOF > xg-el-1.el
 (princ (_ "The Fabulous Four"))
 EOF
 
-tmpfiles="$tmpfiles xg-el-1.tmp.po xg-el-1.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --omit-header --no-location --add-comments=TRANSLATORS: \
-  -d xg-el-1.tmp xg-el-1.el
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-el-1.tmp.po > xg-el-1.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-el-1.tmp xg-el-1.el || exit 1
+LC_ALL=C tr -d '\r' < xg-el-1.tmp.po > xg-el-1.po || exit 1
 
-tmpfiles="$tmpfiles xg-el-1.ok"
 cat <<EOF > xg-el-1.ok
 msgid "help"
 msgstr ""
@@ -48,6 +41,4 @@ EOF
 ${DIFF} xg-el-1.ok xg-el-1.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result