summaryrefslogtreecommitdiffstats
path: root/src/roff/groff/tests/localization_works.sh
blob: 0585259b0bc4be9bc4b3b9fed6389b68df776f8b (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
#!/bin/sh
#
# Copyright (C) 2021 Free Software Foundation, Inc.
#
# This file is part of groff.
#
# groff is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# groff is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

groff="${abs_top_builddir:-.}/test-groff"

set -e

DOC='\*[locale]'

echo "testing default localization (English)" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii)
echo "$OUTPUT" | grep -qx english

echo "testing Czech localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m cs)
echo "$OUTPUT" | grep -qx czech

echo "testing German localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m de)
echo "$OUTPUT" | grep -qx german

echo "testing English localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m en)
echo "$OUTPUT" | grep -qx english

echo "testing French localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m fr)
echo "$OUTPUT" | grep -qx french

echo "testing Italian localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m it)
echo "$OUTPUT" | grep -qx italian

echo "testing Japanese localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m ja)
echo "$OUTPUT" | grep -qx japanese

echo "testing Swedish localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m sv)
echo "$OUTPUT" | grep -qx swedish

echo "testing Chinese localization" >&2
OUTPUT=$(echo "$DOC" | "$groff" -Tascii -m zh)
echo "$OUTPUT" | grep -qx chinese