summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-c-5
blob: a63f50da5b5da235422494a28fe37473ffba3d7a (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
#! /bin/sh

# Test C support: comments.

tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15

tmpfiles="$tmpfiles xg-c-5.in.cc"
cat <<EOF > xg-c-5.in.cc
main(){printf(gettext/*puke*/(/*barf*/"Hello, " "World!" "\n")); }
EOF

tmpfiles="$tmpfiles xg-c-5.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --omit-header --no-location --add-comments xg-c-5.in.cc -d xg-c-5
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

tmpfiles="$tmpfiles xg-c-5.ok"
cat <<EOF > xg-c-5.ok
#. puke
#. barf
#, c-format
msgid "Hello, World!\n"
msgstr ""
EOF

: ${DIFF=diff}
${DIFF} xg-c-5.ok xg-c-5.po
result=$?

rm -fr $tmpfiles

exit $result