Replace FSF snail mail address with URLs.
[glibc.git] / intl / tst-gettext2.sh
blob656c2e15564b9037459f73fd94fe2f0a114c952e
1 #! /bin/sh
2 # Test of gettext functions.
3 # Copyright (C) 2000, 2003, 2005 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
7 # The GNU C Library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
12 # The GNU C Library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with the GNU C Library; if not, see
19 # <http://www.gnu.org/licenses/>.
21 common_objpfx=$1
22 objpfx=$2
24 LC_ALL=C
25 export LC_ALL
27 # Generate the test data.
28 mkdir -p ${objpfx}domaindir
29 # Create the locale directories.
30 test -d ${objpfx}domaindir/lang1 || {
31 mkdir ${objpfx}domaindir/lang1
32 for f in ADDRESS COLLATE CTYPE IDENTIFICATION MEASUREMENT MONETARY NAME NUMERIC PAPER TELEPHONE TIME; do
33 cp ${common_objpfx}localedata/de_DE.ISO-8859-1/LC_$f \
34 ${objpfx}domaindir/lang1
35 done
37 test -d ${objpfx}domaindir/lang2 || {
38 mkdir ${objpfx}domaindir/lang2
39 for f in ADDRESS COLLATE CTYPE IDENTIFICATION MEASUREMENT MONETARY NAME NUMERIC PAPER TELEPHONE TIME; do
40 cp ${common_objpfx}localedata/de_DE.ISO-8859-1/LC_$f \
41 ${objpfx}domaindir/lang2
42 done
44 test -d ${objpfx}domaindir/lang1/LC_MESSAGES || {
45 mkdir ${objpfx}domaindir/lang1/LC_MESSAGES
46 cp ${common_objpfx}localedata/de_DE.ISO-8859-1/LC_MESSAGES/SYS_LC_MESSAGES \
47 ${objpfx}domaindir/lang1/LC_MESSAGES
49 test -d ${objpfx}domaindir/lang2/LC_MESSAGES || {
50 mkdir ${objpfx}domaindir/lang2/LC_MESSAGES
51 cp ${common_objpfx}localedata/de_DE.ISO-8859-1/LC_MESSAGES/SYS_LC_MESSAGES \
52 ${objpfx}domaindir/lang2/LC_MESSAGES
55 # Populate them.
56 msgfmt -o ${objpfx}domaindir/lang1/LC_MESSAGES/tstlang.mo \
57 tstlang1.po
59 msgfmt -o ${objpfx}domaindir/lang2/LC_MESSAGES/tstlang.mo \
60 tstlang2.po
62 GCONV_PATH=${common_objpfx}iconvdata
63 export GCONV_PATH
64 LOCPATH=${objpfx}domaindir
65 export LOCPATH
67 # Now run the test.
68 ${common_objpfx}elf/ld.so --library-path $common_objpfx \
69 ${objpfx}tst-gettext2 > ${objpfx}tst-gettext2.out ${objpfx}domaindir &&
70 cmp ${objpfx}tst-gettext2.out - <<EOF
71 String1 - Lang1: 1st string
72 String2 - Lang1: 2nd string
73 String1 - Lang2: 1st string
74 String2 - Lang2: 2nd string
75 String1 - First string for testing.
76 String2 - Another string for testing.
77 EOF
79 exit $?