Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-smalltalk-2
index 5aa51b6..9814efa 100755 (executable)
@@ -1,11 +1,8 @@
 #!/bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test Smalltalk support: --add-comments option.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-st-2.st"
 cat <<\EOF > xg-st-2.st
 "a"
 "b" Transcript showCr:
@@ -15,15 +12,11 @@ cat <<\EOF > xg-st-2.st
 "f" 'hello world' "h" ).
 EOF
 
-tmpfiles="$tmpfiles xg-st-2.tmp.po xg-st-2.po"
 : ${XGETTEXT=xgettext}
 ${XGETTEXT} --add-comments --omit-header --no-location \
-  -d xg-st-2.tmp xg-st-2.st
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-st-2.tmp.po > xg-st-2.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+  -d xg-st-2.tmp xg-st-2.st || exit 1
+LC_ALL=C tr -d '\r' < xg-st-2.tmp.po > xg-st-2.po || exit 1
 
-tmpfiles="$tmpfiles xg-st-2.ok"
 cat <<EOF > xg-st-2.ok
 #. a
 #. b
@@ -39,6 +32,4 @@ EOF
 ${DIFF} xg-st-2.ok xg-st-2.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result