]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Test msgattrib option --clear-previous.
authorBruno Haible <bruno@clisp.org>
Thu, 5 Oct 2006 11:17:59 +0000 (11:17 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:04 +0000 (12:14 +0200)
gettext-tools/tests/msgattrib-17 [new file with mode: 0755]

diff --git a/gettext-tools/tests/msgattrib-17 b/gettext-tools/tests/msgattrib-17
new file mode 100755 (executable)
index 0000000..e258057
--- /dev/null
@@ -0,0 +1,93 @@
+#! /bin/sh
+
+# Test msgattrib option --clear-previous.
+
+tmpfiles=""
+trap 'rm -fr $tmpfiles' 1 2 3 15
+
+tmpfiles="$tmpfiles ma-test17.po"
+cat <<\EOF > ma-test17.po
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. TRANSLATORS: An error message.
+#: src/args.c:242
+#, fuzzy, c-format
+#| msgid "too many arguments"
+msgid "Too many arguments."
+msgstr "zu viele Argumente"
+
+#. TRANSLATORS: An error message.
+#: src/args.c:247
+#, fuzzy, c-format
+#| msgid "too many arguments"
+msgid "Too few arguments."
+msgstr "zu viele Argumente"
+
+# Oder besser "fehlende Argumente"?
+#. TRANSLATORS: An error message.
+#: src/args.c:273
+#, c-format
+#| msgid "missing arguments"
+msgid "Missing arguments."
+msgstr "Argumente fehlen."
+
+#, fuzzy
+#~| msgid "%s: invalid option -- %c\n"
+#~ msgid "%s: illegal option -- %c\n"
+#~ msgstr "%s: ungültige Option -- %c\n"
+
+#~ msgid "%s: invalid option -- %c\n"
+#~ msgstr "%s: ungültige Option -- %c\n"
+EOF
+
+tmpfiles="$tmpfiles ma-test17.out"
+: ${MSGATTRIB=msgattrib}
+${MSGATTRIB} --clear-previous -o ma-test17.out ma-test17.po
+test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+
+tmpfiles="$tmpfiles ma-test17.ok"
+cat <<\EOF > ma-test17.ok
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. TRANSLATORS: An error message.
+#: src/args.c:242
+#, fuzzy, c-format
+msgid "Too many arguments."
+msgstr "zu viele Argumente"
+
+#. TRANSLATORS: An error message.
+#: src/args.c:247
+#, fuzzy, c-format
+msgid "Too few arguments."
+msgstr "zu viele Argumente"
+
+# Oder besser "fehlende Argumente"?
+#. TRANSLATORS: An error message.
+#: src/args.c:273
+#, c-format
+msgid "Missing arguments."
+msgstr "Argumente fehlen."
+
+#, fuzzy
+#~ msgid "%s: illegal option -- %c\n"
+#~ msgstr "%s: ungültige Option -- %c\n"
+
+#~ msgid "%s: invalid option -- %c\n"
+#~ msgstr "%s: ungültige Option -- %c\n"
+EOF
+
+: ${DIFF=diff}
+${DIFF} ma-test17.ok ma-test17.out
+result=$?
+
+rm -fr $tmpfiles
+
+exit $result