From: Bruno Haible Date: Mon, 20 Mar 2006 13:12:06 +0000 (+0000) Subject: Test of extracted comments specified per keyword. X-Git-Tag: v0.15~281 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9b909ce623196f2d987c3b6d1dc3be827a2934b;p=thirdparty%2Fgettext.git Test of extracted comments specified per keyword. --- diff --git a/gettext-tools/tests/xgettext-9 b/gettext-tools/tests/xgettext-9 new file mode 100755 index 000000000..2f4aa80c7 --- /dev/null +++ b/gettext-tools/tests/xgettext-9 @@ -0,0 +1,66 @@ +#!/bin/sh + +# Test of extracted comments specified per keyword, including the case of +# duplicated msgids. + +tmpfiles="" +trap 'rm -fr $tmpfiles' 1 2 3 15 + +tmpfiles="$tmpfiles xg-test9.c" +cat <<\EOF > xg-test9.c +/* xgettext: max-width 25 */ +label ("eagle"); + +/* xgettext: xml-format */ +label ("seamew"); + +title ("falcon"); + +label ("falcon"); + +label ("pigeon"); +label ("pigeon"); +EOF + +tmpfiles="$tmpfiles xg-test9.po" +: ${XGETTEXT=xgettext} +${XGETTEXT} --omit-header \ + --keyword=label:1,\"xhtml-format\",\"xml-format\" \ + --keyword=title:1,\"xhtml-format\",\"xml-format\" \ + -d xg-test9 xg-test9.c +test $? = 0 || { rm -fr $tmpfiles; exit 1; } + +tmpfiles="$tmpfiles xg-test9.ok" +cat <<\EOF > xg-test9.ok +#. xhtml-format +#. xml-format +#: xg-test9.c:2 +msgid "eagle" +msgstr "" + +#. xhtml-format +#. xml-format +#: xg-test9.c:5 +msgid "seamew" +msgstr "" + +#. xhtml-format +#. xml-format +#: xg-test9.c:7 xg-test9.c:9 +msgid "falcon" +msgstr "" + +#. xhtml-format +#. xml-format +#: xg-test9.c:11 xg-test9.c:12 +msgid "pigeon" +msgstr "" +EOF + +: ${DIFF=diff} +${DIFF} xg-test9.ok xg-test9.po +result=$? + +rm -fr $tmpfiles + +exit $result