mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-18 19:55:29 -04:00
40 lines
654 B
Bash
40 lines
654 B
Bash
#! /bin/sh
|
|
|
|
# Test C support: recognition of #line.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles xg-c-3.in.c"
|
|
cat <<EOF > xg-c-3.in.c
|
|
#line 42 "bozo"
|
|
main(){printf(gettext("Hello, World!\n"));}
|
|
# 6 "clown"
|
|
gettext("nothing");
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles xg-c-3.po"
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} --omit-header --add-location xg-c-3.in.c -d xg-c-3
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
tmpfiles="$tmpfiles xg-c-3.ok"
|
|
cat <<EOF > xg-c-3.ok
|
|
#: bozo:42
|
|
#, c-format
|
|
msgid "Hello, World!\n"
|
|
msgstr ""
|
|
|
|
#: clown:6
|
|
msgid "nothing"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} xg-c-3.ok xg-c-3.po
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|