1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#! /bin/sh
# Test the builtin command "0".
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
# Find a 'tr' program that supports NUL bytes in the input.
# Solaris /usr/bin/tr does not.
if test -f /usr/xpg6/bin/tr; then
TR=/usr/xpg6/bin/tr
else
if test -f /usr/xpg4/bin/tr; then
TR=/usr/xpg4/bin/tr
else
TR=tr
fi
fi
tmpfiles="$tmpfiles mex-test2.po"
cat <<\EOF > mex-test2.po
# HEADER.
#
msgid ""
msgstr ""
"Project-Id-Version: Bonnie Tyler\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: married-men:4
#, fuzzy
msgid "The world is full of married men"
msgstr "So viele verheiratete Mnner"
#: married-men:5
msgid "with wives who never understand"
msgstr "und ihre Frauen verstehen sie nicht"
#: married-men:6
msgid "They're looking for someone to share"
msgstr ""
# schwer zu bersetzen...
#: married-men:7
msgid "the excitement of a love affair"
msgstr ""
#: married-men:8
msgid "Just as soon as they find you"
msgstr ""
#: married-men:9
msgid "They warn you and darn you"
msgstr ""
#~ msgid "You fly on the wings of romance"
#~ msgstr "Die Flgel der frischen Liebe\n"
#~ "heben dich zum Himmel"
#, fuzzy
#~ msgid "In the eyes of the world"
#~ msgstr "Fr die anderen"
# Etwas freie bersetzung.
#~ msgid "You're just another crazy girl"
#~ msgstr "bist du blo ein verrcktes dummes Ding"
#~ msgid "Who loves a married man"
#~ msgstr "das einen verheirateten Mann liebt"
EOF
tmpfiles="$tmpfiles mex-test2.tmp mex-test2.out mex-test2.err"
: ${MSGEXEC=msgexec}
LC_ALL=C \
${MSGEXEC} -i mex-test2.po 0 > mex-test2.tmp 2> mex-test2.err
result=$?
cat mex-test2.err | grep -v 'warning: Locale charset' | grep -v '^ '
test $result = 0 || { rm -fr $tmpfiles; exit 1; }
LC_ALL=C $TR -d '\r' < mex-test2.tmp > mex-test2.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
: ${CMP=cmp}
${CMP} ${top_srcdir}/tests/mex-test2.ok mex-test2.out >/dev/null 2>/dev/null
result=$?
rm -fr $tmpfiles
exit $result
|