diff options
Diffstat (limited to 'debian/gettext-kde/gettext-kde-0.10.35/tests/msgmerge-1')
-rwxr-xr-x | debian/gettext-kde/gettext-kde-0.10.35/tests/msgmerge-1 | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/debian/gettext-kde/gettext-kde-0.10.35/tests/msgmerge-1 b/debian/gettext-kde/gettext-kde-0.10.35/tests/msgmerge-1 new file mode 100755 index 00000000..65ea1e59 --- /dev/null +++ b/debian/gettext-kde/gettext-kde-0.10.35/tests/msgmerge-1 @@ -0,0 +1,81 @@ +#! /bin/sh + +trap 'rm -fr $tmpfiles' 1 2 3 15 + +tmpfiles="mm-test1.in1 mm-test1.in2" +cat <<EOF > mm-test1.in1 +# first +#. this should be discarded +msgid "1" +msgstr "1x" +# second +#: bogus:1 +msgid "2" +msgstr "this is a really long msgstr " + "used to test the wrapping to " + "make sure it works after all " + "what is a test for if not to test things?" +# third +msgid "3" +msgstr "3z" +EOF + +cat <<EOF > mm-test1.in2 +#. this is the first +#: snark.c:345 +msgid "1" +msgstr "" +#. this is the second +#: hunt.c:759 +msgid "2" +msgstr "" +#. this is the third +#: boojum.c:300 +msgid "3" +msgstr "" +EOF + +tmpfiles="$tmpfiles mm-test1.out" +: ${MSGMERGE=msgmerge} +${MSGMERGE} -q mm-test1.in1 mm-test1.in2 -o mm-test1.out + +tmpfiles="$tmpfiles mm-test1.ok" +cat << EOF > mm-test1.ok +# first +#. this is the first +#: snark.c:345 +msgid "1" +msgstr "1x" + +# second +#. this is the second +#: hunt.c:759 +msgid "2" +msgstr "" +"this is a really long msgstr used to test the wrapping to make sure it works " +"after all what is a test for if not to test things?" + +# third +#. this is the third +#: boojum.c:300 +msgid "3" +msgstr "3z" +EOF + +: ${DIFF=diff} +${DIFF} mm-test1.ok mm-test1.out +result=$? + +rm -fr $tmpfiles + +exit $result + +# Preserve executable bits for this shell script. +# Thanks to Noah Friedman for this great trick. +Local Variables: +eval:(defun frobme () (set-file-modes buffer-file-name file-mode)) +eval:(make-local-variable 'file-mode) +eval:(setq file-mode (file-modes (buffer-file-name))) +eval:(make-local-variable 'after-save-hook) +eval:(add-hook 'after-save-hook 'frobme) +End: |