mirror of
https://github.com/openharmony/third_party_gettext.git
synced 2026-07-19 13:17:36 -04:00
50 lines
1.0 KiB
Bash
Executable File
50 lines
1.0 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test ISO C 99 <inttypes.h> format string directives.
|
|
|
|
cat <<\EOF > mf-12.po
|
|
msgid ""
|
|
msgstr "Content-Type: text/plain; charset=ISO-8859-1\n"
|
|
|
|
#, c-format
|
|
msgid "File size is: %<PRId64>"
|
|
msgstr "Dateigröße ist: %<PRId64>"
|
|
|
|
#, c-format
|
|
msgid "File age is %10<PRIdMAX> microseconds"
|
|
msgstr "Datei ist %10<PRIdMAX> Mikrosekunden alt."
|
|
|
|
msgid "<PRIXFAST16> errors"
|
|
msgstr "<PRIXFAST16> Fehler"
|
|
EOF
|
|
|
|
: ${MSGFMT=msgfmt}
|
|
${MSGFMT} -o mf-12.mo mf-12.po || exit 1
|
|
|
|
: ${MSGUNFMT=msgunfmt}
|
|
${MSGUNFMT} -o mf-12.tmp mf-12.mo || exit 1
|
|
LC_ALL=C tr -d '\r' < mf-12.tmp > mf-12.out || exit 1
|
|
|
|
cat <<\EOF > mf-12.ok
|
|
msgid ""
|
|
msgstr "Content-Type: text/plain; charset=ISO-8859-1\n"
|
|
|
|
msgid "<PRIXFAST16> errors"
|
|
msgstr "<PRIXFAST16> Fehler"
|
|
|
|
#, c-format
|
|
msgid "File size is: %<PRId64>"
|
|
msgstr "Dateigröße ist: %<PRId64>"
|
|
|
|
#, c-format
|
|
msgid "File age is %10<PRIdMAX> microseconds"
|
|
msgstr "Datei ist %10<PRIdMAX> Mikrosekunden alt."
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mf-12.ok mf-12.out
|
|
result=$?
|
|
|
|
exit $result
|