diff options
author | Bruno Haible <bruno@clisp.org> | 2003-11-04 14:40:03 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:13 +0200 |
commit | 7eed9a5a18d555849a1f47a24ce0463c0eaf87e7 (patch) | |
tree | b4fcc1379c0bc87360cf5d5d972947fc42d5a850 /gettext-tools/tests/msgmerge-6 | |
parent | 20dfd0b205b676b296f34bf8849ab12d508099cf (diff) | |
download | external_gettext-7eed9a5a18d555849a1f47a24ce0463c0eaf87e7.zip external_gettext-7eed9a5a18d555849a1f47a24ce0463c0eaf87e7.tar.gz external_gettext-7eed9a5a18d555849a1f47a24ce0463c0eaf87e7.tar.bz2 |
Update after rename.
Diffstat (limited to 'gettext-tools/tests/msgmerge-6')
-rwxr-xr-x | gettext-tools/tests/msgmerge-6 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gettext-tools/tests/msgmerge-6 b/gettext-tools/tests/msgmerge-6 index bedccd9..e3e147c 100755 --- a/gettext-tools/tests/msgmerge-6 +++ b/gettext-tools/tests/msgmerge-6 @@ -5,8 +5,8 @@ tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 -tmpfiles="$tmpfiles mm-test9.in1.po mm-test9.in2.po" -cat <<\EOF > mm-test9.in1.po +tmpfiles="$tmpfiles mm-test6.in1.po mm-test6.in2.po" +cat <<\EOF > mm-test6.in1.po # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. @@ -27,7 +27,7 @@ msgid "white" msgstr "weiß" EOF -cat <<EOF > mm-test9.in2.po +cat <<EOF > mm-test6.in2.po # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. @@ -56,14 +56,14 @@ msgid "was correct." msgstr "" EOF -tmpfiles="$tmpfiles mm-test9.out" +tmpfiles="$tmpfiles mm-test6.out" : ${MSGMERGE=msgmerge} LC_MESSAGES=C LC_ALL= \ -${MSGMERGE} -q mm-test9.in1.po mm-test9.in2.po -o mm-test9.out +${MSGMERGE} -q mm-test6.in1.po mm-test6.in2.po -o mm-test6.out test $? = 0 || { rm -fr $tmpfiles; exit 1; } -tmpfiles="$tmpfiles mm-test9.ok" -cat <<\EOF > mm-test9.ok +tmpfiles="$tmpfiles mm-test6.ok" +cat <<\EOF > mm-test6.ok # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. @@ -93,7 +93,7 @@ msgstr "" EOF : ${DIFF=diff} -${DIFF} mm-test9.ok mm-test9.out +${DIFF} mm-test6.ok mm-test6.out result=$? rm -fr $tmpfiles |