summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-4
blob: 42fe8416431fa9ddc2c5fabca775138cae9893f4 (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
#! /bin/sh

# Test C support: recognition of #line.

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

tmpfiles="$tmpfiles xg-test4.in.c"
cat <<EOF > xg-test4.in.c
#line 42 "bozo"
main(){printf(gettext("Hello, World!\n"));}
# 6 "clown"
gettext("nothing");
EOF

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

tmpfiles="$tmpfiles xg-test4.ok"
cat <<EOF > xg-test4.ok
#: bozo:42
#, c-format
msgid "Hello, World!\n"
msgstr ""

#: clown:6
msgid "nothing"
msgstr ""
EOF

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

rm -fr $tmpfiles

exit $result