From: Daiki Ueno Date: Sun, 4 May 2014 09:55:19 +0000 (+0900) Subject: Add missing file tests/xgettext-11 X-Git-Tag: v0.19~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=540873ded16dbad5bf53bdf4b7527530675fd177;p=thirdparty%2Fgettext.git Add missing file tests/xgettext-11 --- diff --git a/gettext-tools/tests/xgettext-11 b/gettext-tools/tests/xgettext-11 new file mode 100644 index 000000000..1b7a8693e --- /dev/null +++ b/gettext-tools/tests/xgettext-11 @@ -0,0 +1,41 @@ +#!/bin/sh +. "${srcdir=.}/init.sh"; path_prepend_ . ../src + +# Test of multi-line comment extraction. + +cat <<\EOF > xg-test11.c +/* TRANSLATORS: this + is the first msgid + */ +gettext ("abc"); + +/* + * TRANSLATORS: this + * is the second msgid + */ +gettext ("def"); +EOF + +: ${XGETTEXT=xgettext} +${XGETTEXT} --no-location --omit-header --add-comments=TRANSLATORS: -d xg-test11.tmp xg-test11.c || exit 1 +LC_ALL=C tr -d '\r' < xg-test11.tmp.po > xg-test11.po || exit 1 + +cat <<\EOF > xg-test11.ok +#. TRANSLATORS: this +#. is the first msgid +#. +msgid "abc" +msgstr "" + +#. TRANSLATORS: this +#. is the second msgid +#. +msgid "def" +msgstr "" +EOF + +: ${DIFF=diff} +${DIFF} xg-test11.ok xg-test11.po +result=$? + +exit $result