summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgexec-3
blob: 7955d63906475da79974ffe51db05d4a3dfff654 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test of an external command with Java .properties syntax.

cat <<\EOF > mex-test3.properties
# HEADER.
#
!=Project-Id-Version\: Bonnie Tyler\n

#: married-men:4
#, fuzzy
!The\ world\ is\ full\ of\ married\ men=So viele verheiratete M\u00e4nner

#: married-men:5
with\ wives\ who\ never\ understand=und ihre Frauen verstehen sie nicht

#: married-men:6
!They're\ looking\ for\ someone\ to\ share=

# schwer zu \u00fcbersetzen...
#: married-men:7
!the\ excitement\ of\ a\ love\ affair=

#: married-men:8
!Just\ as\ soon\ as\ they\ find\ you=

#: married-men:9
!They\ warn\ you\ and\ darn\ you=
EOF

cat <<\EOF > mex-test3.sh
#! /bin/sh
echo "========================= $MSGEXEC_LOCATION =========================" | LC_ALL=C tr -d '\r'
cat <<MEOF
$MSGEXEC_MSGID
---
MEOF
cat
echo | LC_ALL=C tr -d '\r'
exit 0
EOF
chmod a+x mex-test3.sh

: ${MSGEXEC=msgexec}
${MSGEXEC} --properties-input -i mex-test3.properties ./mex-test3.sh > mex-test3.out || exit 1

cat <<\EOF > mex-test3.ok
========================= mex-test3.properties:3 =========================

---
Project-Id-Version: Bonnie Tyler

========================= mex-test3.properties:7 =========================
The world is full of married men
---
So viele verheiratete Männer
========================= mex-test3.properties:10 =========================
with wives who never understand
---
und ihre Frauen verstehen sie nicht
========================= mex-test3.properties:13 =========================
They're looking for someone to share
---

========================= mex-test3.properties:17 =========================
the excitement of a love affair
---

========================= mex-test3.properties:20 =========================
Just as soon as they find you
---

========================= mex-test3.properties:23 =========================
They warn you and darn you
---

EOF

: ${DIFF=diff}
${DIFF} mex-test3.ok mex-test3.out
result=$?

exit $result