Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-csharp-7
index ac871fd..9f5643b 100755 (executable)
@@ -1,24 +1,17 @@
 #! /bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
 
 # Test C# support: extraction of contexts.
 
-tmpfiles=""
-trap 'rm -fr $tmpfiles' 1 2 3 15
-
-tmpfiles="$tmpfiles xg-cs-7.cs"
 cat <<\EOF > xg-cs-7.cs
 Console.WriteLine(rm.GetString("help"));
 Console.WriteLine(rm.GetParticularString("Help", "about"));
 EOF
 
-tmpfiles="$tmpfiles xg-cs-7.tmp.po xg-cs-7.po"
 : ${XGETTEXT=xgettext}
-${XGETTEXT} --omit-header --no-location -d xg-cs-7.tmp xg-cs-7.cs
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-LC_ALL=C tr -d '\r' < xg-cs-7.tmp.po > xg-cs-7.po
-test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+${XGETTEXT} --omit-header --no-location -d xg-cs-7.tmp xg-cs-7.cs || exit 1
+LC_ALL=C tr -d '\r' < xg-cs-7.tmp.po > xg-cs-7.po || exit 1
 
-tmpfiles="$tmpfiles xg-cs-7.ok"
 cat <<EOF > xg-cs-7.ok
 msgid "help"
 msgstr ""
@@ -32,6 +25,4 @@ EOF
 ${DIFF} xg-cs-7.ok xg-cs-7.po
 result=$?
 
-rm -fr $tmpfiles
-
 exit $result