Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / msgcmp-3
index 5fc7f96..e303ff0 100755 (executable)
@@ -1,11 +1,8 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test a failing comparison with Java .properties syntax.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles mc-test3.in1 mc-test3.in2"
 cat <<EOF > mc-test3.in1
 one=first
 two=second
@@ -19,12 +16,10 @@ cat <<EOF > mc-test3.in2
 !two=
 EOF
 
-tmpfiles="$tmpfiles mc-test3.out"
 : ${MSGCMP=msgcmp}
 LC_MESSAGES=C LC_ALL= \
 ${MSGCMP} --properties-input mc-test3.in1 mc-test3.in2 2>&1 | grep -v '^==' | sed -e 's|[^ ]*\\msgcmp\.exe|msgcmp|' -e 's|^msgcmp\.exe|msgcmp|' | LC_ALL=C tr -d '\r' > mc-test3.out
 
-tmpfiles="$tmpfiles mc-test3.ok"
 cat <<EOF > mc-test3.ok
 mc-test3.in2:1: this message is used but not defined...
 mc-test3.in1:3: ...but this definition is similar
@@ -36,6 +31,4 @@ EOF
 ${DIFF} mc-test3.ok mc-test3.out
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result