~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/tests/msgcomm-7

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
# Test --no-location and --omit-header options together.
 
4
 
 
5
tmpfiles=""
 
6
trap 'rm -fr $tmpfiles' 1 2 3 15
 
7
 
 
8
tmpfiles="$tmpfiles mcomm-test7.in1 mcomm-test7.in2"
 
9
cat <<EOF > mcomm-test7.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-test7.in2
 
27
#: hunt.c:759
 
28
msgid "2"
 
29
msgstr "2x"
 
30
EOF
 
31
 
 
32
tmpfiles="$tmpfiles mcomm-test7.out"
 
33
: ${MSGCOMM=msgcomm}
 
34
${MSGCOMM} --more-than=0 --no-location --omit-header -o mcomm-test7.out \
 
35
    mcomm-test7.in1 mcomm-test7.in2
 
36
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
 
37
 
 
38
tmpfiles="$tmpfiles mcomm-test7.ok"
 
39
cat << EOF > mcomm-test7.ok
 
40
msgid "1"
 
41
msgstr "1x"
 
42
 
 
43
msgid "2"
 
44
msgstr "2x"
 
45
EOF
 
46
 
 
47
: ${DIFF=diff}
 
48
${DIFF} mcomm-test7.ok mcomm-test7.out
 
49
result=$?
 
50
 
 
51
rm -fr $tmpfiles
 
52
 
 
53
exit $result