summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-c-2
blob: 5bbf0569786ec34aa468933bf2bef04bd18729ba (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
42
43
44
45
46
47
#! /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