mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-15 18:26:12 -04:00
48 lines
809 B
Bash
48 lines
809 B
Bash
#! /bin/sh
|
|
|
|
# Test C support: comments meant for xgettext, and whitespace.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles xg-c-2.in.c"
|
|
cat <<EOF > xg-c-2.in.c
|
|
This is a test of the xgettext functionality.
|
|
/* xgettext:no-c-format */
|
|
_("extract me")
|
|
Sometimes keywords can be spread apart
|
|
xgettext:no-c-format
|
|
_ ( "what about me" )
|
|
And even further on accasion
|
|
_
|
|
(
|
|
"hello"
|
|
)
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles xg-c-2.po"
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} -d xg-c-2 -k_ --omit-header --no-location xg-c-2.in.c
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
tmpfiles="$tmpfiles xg-c-2.ok"
|
|
cat <<EOF > xg-c-2.ok
|
|
#, no-c-format
|
|
msgid "extract me"
|
|
msgstr ""
|
|
|
|
msgid "what about me"
|
|
msgstr ""
|
|
|
|
msgid "hello"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} xg-c-2.ok xg-c-2.po
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|