summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/xgettext-c-13
blob: 01464b0aaf030a59334c2e5d93f9ff5c3fc0f900 (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
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test C++ support: test --flag that introduces qt-format.

cat <<\EOF > xg-c-13.cc
foo (gettext ("on"));
tr ("stopped");
tr ("action", "");
tr ("deleted %n files", "", numdel);
EOF

: ${XGETTEXT=xgettext}
${XGETTEXT} --omit-header --no-location -d xg-c-13.tmp \
  --qt \
  --flag=foo:1:qt-format --flag=gettext:1:pass-qt-format \
  --keyword=tr:1,1t --keyword=tr:1,2c,2t --keyword=tr:1,1,2c,3t \
  xg-c-13.cc || exit 1
LC_ALL=C tr -d '\r' < xg-c-13.tmp.po > xg-c-13.po || exit 1

cat <<EOF > xg-c-13.ok
#, qt-format
msgid "on"
msgstr ""

msgid "stopped"
msgstr ""

msgctxt ""
msgid "action"
msgstr ""

#, qt-plural-format
msgctxt ""
msgid "deleted %n files"
msgid_plural "deleted %n files"
msgstr[0] ""
msgstr[1] ""
EOF

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

exit $result