Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / tests / xgettext-java-4
1 #!/bin/sh
2 . "${srcdir=.}/init.sh"; path_prepend_ . ../src
3 #
4 # Some tests for java plural keyword support
5 #
6
7 cat <<EOF > xg-j-4.java
8 class TestCase {
9     public TestCase() {
10         Bundle test = Bundle.getBundle();
11         test.ngettext(test, "test 1", "plural test");
12     }
13 }
14 EOF
15
16 : ${XGETTEXT=xgettext}
17 ${XGETTEXT} --omit-header --no-location --keyword=ngettext:2,3 \
18   -d xg-j-4.tmp xg-j-4.java || exit 1
19 LC_ALL=C tr -d '\r' < xg-j-4.tmp.po > xg-j-4.po || exit 1
20
21 cat <<EOF > xg-j-4.ok
22 msgid "test 1"
23 msgid_plural "plural test"
24 msgstr[0] ""
25 msgstr[1] ""
26 EOF
27
28 : ${DIFF=diff}
29 ${DIFF} xg-j-4.ok xg-j-4.po
30 result=$?
31
32 exit $result