Simplified Chinese translations for libc.
[glibc.git] / intl / tst-gettext.sh
blob91abd38d95682fdaaf47c7315d63ee8ee1ecfd55
1 #! /bin/sh
2 # Test of gettext functions.
3 # Copyright (C) 2000, 2002 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, write to the Free
19 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 # 02111-1307 USA.
22 common_objpfx=$1
23 objpfx=$2
24 malloc_trace=$3
26 LC_ALL=C
27 export LC_ALL
29 # Generate the test data.
30 test -d ${objpfx}domaindir || mkdir ${objpfx}domaindir
31 test -d ${objpfx}localedir || mkdir ${objpfx}localedir
32 # Create the domain directories.
33 test -d ${objpfx}domaindir/existing-locale || mkdir ${objpfx}domaindir/existing-locale
34 test -d ${objpfx}domaindir/existing-locale/LC_MESSAGES || mkdir ${objpfx}domaindir/existing-locale/LC_MESSAGES
35 test -d ${objpfx}domaindir/existing-locale/LC_TIME || mkdir ${objpfx}domaindir/existing-locale/LC_TIME
36 # Create the locale directories.
37 test -d ${objpfx}localedir/existing-locale || {
38 mkdir ${objpfx}localedir/existing-locale
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}localedir/existing-locale
42 done
44 test -d ${objpfx}localedir/existing-locale/LC_MESSAGES || {
45 mkdir ${objpfx}localedir/existing-locale/LC_MESSAGES
46 cp ${common_objpfx}localedata/de_DE.ISO-8859-1/LC_MESSAGES/SYS_LC_MESSAGES \
47 ${objpfx}localedir/existing-locale/LC_MESSAGES
50 # Populate them.
51 msgfmt -o ${objpfx}domaindir/existing-locale/LC_MESSAGES/existing-domain.mo \
52 -f ../po/de.po
53 msgfmt -o ${objpfx}domaindir/existing-locale/LC_TIME/existing-time-domain.mo \
54 -f ../po/de.po
56 GCONV_PATH=${common_objpfx}iconvdata
57 export GCONV_PATH
58 LOCPATH=${common_objpfx}localedata
59 export LOCPATH
61 # Now run the test.
62 MALLOC_TRACE=$malloc_trace LOCPATH=${objpfx}localedir:$LOCPATH \
63 ${common_objpfx}elf/ld.so --library-path $common_objpfx \
64 ${objpfx}tst-gettext > ${objpfx}tst-gettext.out ${objpfx}domaindir
66 exit $?