]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Test msgconv on a PO file with previous msgids.
authorBruno Haible <bruno@clisp.org>
Thu, 5 Oct 2006 11:19:08 +0000 (11:19 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:04 +0000 (12:14 +0200)
gettext-tools/tests/msgconv-6 [new file with mode: 0755]

diff --git a/gettext-tools/tests/msgconv-6 b/gettext-tools/tests/msgconv-6
new file mode 100755 (executable)
index 0000000..a3f25c7
--- /dev/null
@@ -0,0 +1,57 @@
+#! /bin/sh
+
+# Test msgconv on a PO file with previous msgids.
+
+tmpfiles=""
+trap 'rm -fr $tmpfiles' 1 2 3 15
+
+tmpfiles="$tmpfiles mco-test6.po"
+cat <<\EOF > mco-test6.po
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#, fuzzy
+#| msgid "© Frobby Inc."
+msgid "(C) Frobby Inc."
+msgstr "(C) Dingsbums GmbH"
+
+#, fuzzy
+#| msgid "full 360°"
+msgid "full turn"
+msgstr "Volle 360 Grad"
+EOF
+
+tmpfiles="$tmpfiles mco-test6.out"
+: ${MSGCONV=msgconv}
+${MSGCONV} --to-code=ISO-8859-1 -o mco-test6.out mco-test6.po
+test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+
+tmpfiles="$tmpfiles mco-test6.ok"
+cat <<\EOF > mco-test6.ok
+msgid ""
+msgstr ""
+"Report-Msgid-Bugs-To: \n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#, fuzzy
+#| msgid "© Frobby Inc."
+msgid "(C) Frobby Inc."
+msgstr "(C) Dingsbums GmbH"
+
+#, fuzzy
+#| msgid "full 360°"
+msgid "full turn"
+msgstr "Volle 360 Grad"
+EOF
+
+: ${DIFF=diff}
+${DIFF} mco-test6.ok mco-test6.out
+result=$?
+
+rm -fr $tmpfiles
+
+exit $result