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