diff options
Diffstat (limited to 'gettext-tools/tests/msgmerge-compendium-1')
-rwxr-xr-x | gettext-tools/tests/msgmerge-compendium-1 | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gettext-tools/tests/msgmerge-compendium-1 b/gettext-tools/tests/msgmerge-compendium-1 index 43a2ddb..a150e1e 100755 --- a/gettext-tools/tests/msgmerge-compendium-1 +++ b/gettext-tools/tests/msgmerge-compendium-1 @@ -5,20 +5,20 @@ tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 -tmpfiles="$tmpfiles mm-test6.in1 mm-test6.com mm-test6.pot" -cat <<EOF > mm-test6.in1 +tmpfiles="$tmpfiles mm-c-1.in1 mm-c-1.com mm-c-1.pot" +cat <<EOF > mm-c-1.in1 #: file.c:123 msgid "1" msgstr "1x" EOF -cat <<EOF > mm-test6.com +cat <<EOF > mm-c-1.com #: file.c:345 msgid "2" msgstr "2x" EOF -cat <<EOF > mm-test6.pot +cat <<EOF > mm-c-1.pot #: file.c:123 msgid "1" msgstr "" @@ -28,13 +28,13 @@ msgid "2" msgstr "" EOF -tmpfiles="$tmpfiles mm-test6.out" +tmpfiles="$tmpfiles mm-c-1.out" : ${MSGMERGE=msgmerge} -${MSGMERGE} -q -C mm-test6.com mm-test6.in1 mm-test6.pot -o mm-test6.out +${MSGMERGE} -q -C mm-c-1.com mm-c-1.in1 mm-c-1.pot -o mm-c-1.out test $? = 0 || { rm -fr $tmpfiles; exit 1; } -tmpfiles="$tmpfiles mm-test6.ok" -cat << EOF > mm-test6.ok +tmpfiles="$tmpfiles mm-c-1.ok" +cat << EOF > mm-c-1.ok #: file.c:123 msgid "1" msgstr "1x" @@ -45,7 +45,7 @@ msgstr "2x" EOF : ${DIFF=diff} -${DIFF} mm-test6.ok mm-test6.out +${DIFF} mm-c-1.ok mm-c-1.out result=$? rm -fr $tmpfiles |