summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgmerge-compendium-4
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/tests/msgmerge-compendium-4')
-rwxr-xr-xgettext-tools/tests/msgmerge-compendium-416
1 files changed, 8 insertions, 8 deletions
diff --git a/gettext-tools/tests/msgmerge-compendium-4 b/gettext-tools/tests/msgmerge-compendium-4
index 6306c07..26ccacb 100755
--- a/gettext-tools/tests/msgmerge-compendium-4
+++ b/gettext-tools/tests/msgmerge-compendium-4
@@ -6,9 +6,9 @@
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
-tmpfiles="$tmpfiles mm-test12.com mm-test12.pot"
+tmpfiles="$tmpfiles mm-c-4.com mm-c-4.pot"
-cat <<\EOF > mm-test12.com
+cat <<\EOF > mm-c-4.com
msgid ""
msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
@@ -19,7 +19,7 @@ msgid "5"
msgstr "fünf"
EOF
-cat <<EOF > mm-test12.pot
+cat <<EOF > mm-c-4.pot
#: file.c:123
msgid "1"
msgstr ""
@@ -29,13 +29,13 @@ msgid "5"
msgstr ""
EOF
-tmpfiles="$tmpfiles mm-test12.out"
+tmpfiles="$tmpfiles mm-c-4.out"
: ${MSGMERGE=msgmerge}
-${MSGMERGE} -q --compendium mm-test12.com /dev/null mm-test12.pot -o mm-test12.out
+${MSGMERGE} -q --compendium mm-c-4.com /dev/null mm-c-4.pot -o mm-c-4.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
-tmpfiles="$tmpfiles mm-test12.ok"
-cat << \EOF > mm-test12.ok
+tmpfiles="$tmpfiles mm-c-4.ok"
+cat << \EOF > mm-c-4.ok
msgid ""
msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
@@ -51,7 +51,7 @@ msgstr "fünf"
EOF
: ${DIFF=diff}
-${DIFF} mm-test12.ok mm-test12.out
+${DIFF} mm-c-4.ok mm-c-4.out
result=$?
rm -fr $tmpfiles