fac28513bc4fda935ecc309692771cc73b76d4df
[platform/upstream/gettext.git] / gettext-tools / tests / msgcomm-9
1 #! /bin/sh
2
3 # Test merge of common entries with --more-than=1 and --no-location.
4
5 tmpfiles=""
6 trap 'rm -fr $tmpfiles' 1 2 3 15
7
8 tmpfiles="$tmpfiles mcomm-test9.in1 mcomm-test9.in2"
9 cat <<EOF > mcomm-test9.in1
10 msgid ""
11 msgstr ""
12 "Project-Id-Version: GNU one 1.2.3\n"
13 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
14 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
15 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
16 "Language-Team: German <de@li.org>\n"
17 "MIME-Version: 1.0\n"
18 "Content-Type: text/plain; charset=iso-8859-1\n"
19 "Content-Transfer-Encoding: 8bit\n"
20
21 #: first.c:123
22 msgid "1"
23 msgstr "1x"
24 EOF
25
26 cat <<EOF > mcomm-test9.in2
27 msgid ""
28 msgstr ""
29 "Project-Id-Version: GNU one 1.2.3\n"
30 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
31 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
32 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
33 "Language-Team: German <de@li.org>\n"
34 "MIME-Version: 1.0\n"
35 "Content-Type: text/plain; charset=iso-8859-1\n"
36 "Content-Transfer-Encoding: 8bit\n"
37
38 #: hunt.c:759
39 msgid "1"
40 msgstr ""
41 EOF
42
43 tmpfiles="$tmpfiles mcomm-test9.tmp mcomm-test9.out"
44 : ${MSGCOMM=msgcomm}
45 ${MSGCOMM} --more-than=1 --no-location -o mcomm-test9.tmp \
46     mcomm-test9.in1 mcomm-test9.in2
47 test $? = 0 || { rm -fr $tmpfiles; exit 1; }
48 LC_ALL=C tr -d '\r' < mcomm-test9.tmp > mcomm-test9.out
49 test $? = 0 || { rm -fr $tmpfiles; exit 1; }
50
51 tmpfiles="$tmpfiles mcomm-test9.ok"
52 cat << EOF > mcomm-test9.ok
53 msgid ""
54 msgstr ""
55 "Project-Id-Version: GNU one 1.2.3\n"
56 "POT-Creation-Date: 2000-12-11 20:49+0100\n"
57 "PO-Revision-Date: 2000-03-18 15:25+01:00\n"
58 "Last-Translator: Karl Eichwalder <ke@suse.de>\n"
59 "Language-Team: German <de@li.org>\n"
60 "MIME-Version: 1.0\n"
61 "Content-Type: text/plain; charset=iso-8859-1\n"
62 "Content-Transfer-Encoding: 8bit\n"
63
64 msgid "1"
65 msgstr "1x"
66 EOF
67
68 : ${DIFF=diff}
69 ${DIFF} mcomm-test9.ok mcomm-test9.out
70 result=$?
71
72 rm -fr $tmpfiles
73
74 exit $result