]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Test of extracted comments specified per keyword.
authorBruno Haible <bruno@clisp.org>
Mon, 20 Mar 2006 13:12:06 +0000 (13:12 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:03 +0000 (12:13 +0200)
gettext-tools/tests/xgettext-9 [new file with mode: 0755]

diff --git a/gettext-tools/tests/xgettext-9 b/gettext-tools/tests/xgettext-9
new file mode 100755 (executable)
index 0000000..2f4aa80
--- /dev/null
@@ -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