Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / msgcomm-5
index 8442a5d..d17467d 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test --omit-header option when there is a header.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles mcomm-test5.in1 mcomm-test5.in2"
 cat <<EOF > mcomm-test5.in1
 msgid ""
 msgstr ""
@@ -29,15 +26,11 @@ msgid "2"
 msgstr "2x"
 EOF
 
-tmpfiles="$tmpfiles mcomm-test5.tmp mcomm-test5.out"
 : ${MSGCOMM=msgcomm}
 ${MSGCOMM} --more-than=0 --omit-header -o mcomm-test5.tmp \
-    mcomm-test5.in1 mcomm-test5.in2
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < mcomm-test5.tmp > mcomm-test5.out
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+    mcomm-test5.in1 mcomm-test5.in2 || exit 1
+LC_ALL=C tr -d '\r' < mcomm-test5.tmp > mcomm-test5.out || exit 1
 
-tmpfiles="$tmpfiles mcomm-test5.ok"
 cat << EOF > mcomm-test5.ok
 #: first.c:123
 msgid "1"
@@ -52,6 +45,4 @@ EOF
 ${DIFF} mcomm-test5.ok mcomm-test5.out
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result