summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgcomm-10
blob: 7dca8c0e1c056621d5b76d1886611147d7a401af (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
46
47
48
49
50
51
52
53
54
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test merge of common entries with --more-than=1 and --omit-header.

cat <<EOF > mcomm-test10.in1
msgid ""
msgstr ""
"Project-Id-Version: GNU one 1.2.3\n"
"POT-Creation-Date: 2000-12-11 20:49+0100\n"
"PO-Revision-Date: 2000-03-18 15:25+01:00\n"
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"

#: first.c:123
msgid "1"
msgstr "1x"
EOF

cat <<EOF > mcomm-test10.in2
msgid ""
msgstr ""
"Project-Id-Version: GNU one 1.2.3\n"
"POT-Creation-Date: 2000-12-11 20:49+0100\n"
"PO-Revision-Date: 2000-03-18 15:25+01:00\n"
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"

#: hunt.c:759
msgid "1"
msgstr ""
EOF

: ${MSGCOMM=msgcomm}
${MSGCOMM} --more-than=1 --no-location --omit-header -o mcomm-test10.tmp \
    mcomm-test10.in1 mcomm-test10.in2 || Exit 1
LC_ALL=C tr -d '\r' < mcomm-test10.tmp > mcomm-test10.out || Exit 1

cat << EOF > mcomm-test10.ok
msgid "1"
msgstr "1x"
EOF

: ${DIFF=diff}
${DIFF} mcomm-test10.ok mcomm-test10.out
result=$?

exit $result