blob: bc6d69afd37c2e9353bbba0cc04147ec62903b8f (
plain)
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
|
#! /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.tmp.po xg-c-3.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --omit-header --add-location -d xg-c-3.tmp xg-c-3.in.c
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tr -d '\r' < xg-c-3.tmp.po > xg-c-3.po
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
|