summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-perl-7
blob: 17eedfead1d171c7b770453eae28d08ddb0788f9 (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
#!/bin/sh

# Test Perl support: --add-comments option.

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

tmpfiles="$tmpfiles xg-pl-7.pl"
cat <<\EOF > xg-pl-7.pl
# a
string = # b
# c
_( # d
"hello " # e
. # f
"world" # g
);
EOF

tmpfiles="$tmpfiles xg-pl-7.tmp.po xg-pl-7.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --add-comments --omit-header --no-location --keyword=_ \
  -d xg-pl-7.tmp xg-pl-7.pl
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tr -d '\r' < xg-pl-7.tmp.po > xg-pl-7.po
test $? = 0 || { rm -fr $tmpfiles; exit 1; }

tmpfiles="$tmpfiles xg-pl-7.ok"
cat <<EOF > xg-pl-7.ok
#. a
#. b
#. c
#. d
msgid "hello world"
msgstr ""
EOF

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

rm -fr $tmpfiles

exit $result