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
|
#! /bin/sh
# Test msgcat with --width option. Check that format strings are not broken.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles mcat-test17.in"
cat <<\EOF > mcat-test17.in
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "write error of a large result on a too small disk% s% s"
msgstr "Fehler beim Schreiben eines großen Ergebnisses auf eine zu kleine Platte% s% smit der jederzeitigen Möglichkeit eines Fehlers in jedem Moment und an jeder Stelle"
#, c-format
msgid "write error of a big result on a too small disk% s% s"
msgstr "Fehler beim Schreiben eines großen Ergebnisses auf eine zu kleine Platte% s% smit der jederzeitigen Möglichkeit eines Fehlers in jedem Moment und an jeder Stelle"
EOF
tmpfiles="$tmpfiles mcat-test17.tmp mcat-test17.out"
rm -f mcat-test17.tmp
: ${MSGCAT=msgcat}
${MSGCAT} -o mcat-test17.tmp --width=80 mcat-test17.in
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
LC_ALL=C tr -d '\r' < mcat-test17.tmp > mcat-test17.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles mcat-test17.ok"
cat <<\EOF > mcat-test17.ok
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "write error of a large result on a too small disk% s% s"
msgstr ""
"Fehler beim Schreiben eines großen Ergebnisses auf eine zu kleine Platte% s% "
"smit der jederzeitigen Möglichkeit eines Fehlers in jedem Moment und an jeder "
"Stelle"
#, c-format
msgid "write error of a big result on a too small disk% s% s"
msgstr ""
"Fehler beim Schreiben eines großen Ergebnisses auf eine zu kleine Platte% s"
"% smit der jederzeitigen Möglichkeit eines Fehlers in jedem Moment und an "
"jeder Stelle"
EOF
: ${DIFF=diff}
${DIFF} mcat-test17.ok mcat-test17.out
result=$?
rm -fr $tmpfiles
exit $result
|