Imported Upstream version 0.18.1.1
[platform/upstream/gettext.git] / gettext-tools / tests / msgcomm-13
1 #! /bin/sh
2
3 # Test that --less-than=2 removes entries which occur more than twice.
4
5 tmpfiles=""
6 trap 'rm -fr $tmpfiles' 1 2 3 15
7
8 # one msg occurs 3 times (has to go away).
9 # An unique msg in in3 has to stay.
10
11 tmpfiles="$tmpfiles mcomm-test13.in1 mcomm-test13.in2 mcomm-test13.in3"
12 cat <<EOF > mcomm-test13.in1
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: GNU one 1.2.3\n"
16 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
17 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
18 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
19 "Language-Team: German <de@li.org>\n"
20 "MIME-Version: 1.0\n"
21 "Content-Type: text/plain; charset=iso-8859-1\n"
22 "Content-Transfer-Encoding: 8bit\n"
23
24 # occurs 3 times
25 #: first.c:123
26 msgid "1"
27 msgstr "1x"
28 EOF
29
30 cat <<EOF > mcomm-test13.in2
31 msgid ""
32 msgstr ""
33 "Project-Id-Version: GNU one 1.2.3\n"
34 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
35 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
36 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
37 "Language-Team: German <de@li.org>\n"
38 "MIME-Version: 1.0\n"
39 "Content-Type: text/plain; charset=iso-8859-1\n"
40 "Content-Transfer-Encoding: 8bit\n"
41
42 #: hunt.c:759
43 msgid "1"
44 msgstr ""
45 EOF
46
47 cat <<EOF > mcomm-test13.in3
48 msgid ""
49 msgstr ""
50 "Project-Id-Version: GNU one 1.2.3\n"
51 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
52 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
53 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
54 "Language-Team: German <de@li.org>\n"
55 "MIME-Version: 1.0\n"
56 "Content-Type: text/plain; charset=iso-8859-1\n"
57 "Content-Transfer-Encoding: 8bit\n"
58
59 #: hunt.c:789
60 msgid "1"
61 msgstr ""
62
63 # unique
64 #: hunt.c:890
65 msgid "2"
66 msgstr ""
67 EOF
68
69 tmpfiles="$tmpfiles mcomm-test13.tmp mcomm-test13.out"
70 : ${MSGCOMM=msgcomm}
71
72 # --unique is shorthand for --less-than=2; do we've to test both
73 # switches?  Are 'for' loops allowed? -ke-
74 ${MSGCOMM} --less-than=2 --no-location --force-po -o mcomm-test13.tmp \
75     mcomm-test13.in1 mcomm-test13.in2 mcomm-test13.in3
76 test $? = 0 || { rm -fr $tmpfiles; exit 1; }
77 LC_ALL=C tr -d '\r' < mcomm-test13.tmp > mcomm-test13.out
78 test $? = 0 || { rm -fr $tmpfiles; exit 1; }
79
80 tmpfiles="$tmpfiles mcomm-test13.ok"
81 cat << EOF > mcomm-test13.ok
82 msgid ""
83 msgstr ""
84 "Project-Id-Version: GNU one 1.2.3\n"
85 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
86 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
87 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
88 "Language-Team: German <de@li.org>\n"
89 "MIME-Version: 1.0\n"
90 "Content-Type: text/plain; charset=iso-8859-1\n"
91 "Content-Transfer-Encoding: 8bit\n"
92
93 # unique
94 msgid "2"
95 msgstr ""
96 EOF
97
98 : ${DIFF=diff}
99 ${DIFF} mcomm-test13.ok mcomm-test13.out
100 result=$?
101
102 rm -fr $tmpfiles
103
104 exit $result