2000-01-22 06:50:49 +01:00
|
|
|
#! /bin/sh
|
|
|
|
# Test of gettext functions.
|
2004-08-15 21:28:54 +02:00
|
|
|
# Copyright (C) 2000, 2002, 2004 Free Software Foundation, Inc.
|
2000-01-22 06:50:49 +01:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
#
|
2001-07-06 06:58:11 +02:00
|
|
|
|
2000-01-22 06:50:49 +01:00
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
2000-01-22 06:50:49 +01:00
|
|
|
# The GNU C Library 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
|
2001-07-06 06:58:11 +02:00
|
|
|
# Lesser General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with the GNU C Library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
# 02111-1307 USA.
|
2000-01-22 06:50:49 +01:00
|
|
|
|
|
|
|
common_objpfx=$1
|
|
|
|
objpfx=$2
|
2000-08-31 23:05:59 +02:00
|
|
|
malloc_trace=$3
|
2000-01-22 06:50:49 +01:00
|
|
|
|
2000-07-04 10:22:44 +02:00
|
|
|
LC_ALL=C
|
|
|
|
export LC_ALL
|
2000-06-12 21:47:50 +02:00
|
|
|
|
2000-01-22 06:50:49 +01:00
|
|
|
# Generate the test data.
|
2002-11-21 04:41:16 +01:00
|
|
|
|
2000-10-31 04:10:13 +01:00
|
|
|
# Create the locale directories.
|
2002-11-21 04:41:16 +01:00
|
|
|
mkdir -p ${objpfx}localedir/existing-locale/LC_MESSAGES
|
|
|
|
for f in ADDRESS COLLATE CTYPE IDENTIFICATION MEASUREMENT MONETARY NAME NUMERIC PAPER TELEPHONE TIME; do
|
2004-08-15 21:28:54 +02:00
|
|
|
cp -f ${common_objpfx}localedata/de_DE.UTF-8/LC_$f \
|
2002-11-21 04:41:16 +01:00
|
|
|
${objpfx}localedir/existing-locale
|
|
|
|
done
|
2004-08-15 21:28:54 +02:00
|
|
|
cp -f ${common_objpfx}localedata/de_DE.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES \
|
2002-11-21 04:41:16 +01:00
|
|
|
${objpfx}localedir/existing-locale/LC_MESSAGES
|
2000-01-22 06:50:49 +01:00
|
|
|
|
2002-11-21 04:41:16 +01:00
|
|
|
# Create the domain directories.
|
|
|
|
mkdir -p ${objpfx}domaindir/existing-locale/LC_MESSAGES
|
|
|
|
mkdir -p ${objpfx}domaindir/existing-locale/LC_TIME
|
2000-01-22 06:50:49 +01:00
|
|
|
# Populate them.
|
|
|
|
msgfmt -o ${objpfx}domaindir/existing-locale/LC_MESSAGES/existing-domain.mo \
|
2002-07-16 06:56:00 +02:00
|
|
|
-f ../po/de.po
|
2000-01-22 06:50:49 +01:00
|
|
|
msgfmt -o ${objpfx}domaindir/existing-locale/LC_TIME/existing-time-domain.mo \
|
2002-07-16 06:56:00 +02:00
|
|
|
-f ../po/de.po
|
2000-01-22 06:50:49 +01:00
|
|
|
|
2002-04-06 07:11:18 +02:00
|
|
|
GCONV_PATH=${common_objpfx}iconvdata
|
|
|
|
export GCONV_PATH
|
|
|
|
LOCPATH=${common_objpfx}localedata
|
|
|
|
export LOCPATH
|
|
|
|
|
2000-01-22 06:50:49 +01:00
|
|
|
# Now run the test.
|
2000-10-31 04:10:13 +01:00
|
|
|
MALLOC_TRACE=$malloc_trace LOCPATH=${objpfx}localedir:$LOCPATH \
|
2000-01-22 06:50:49 +01:00
|
|
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
|
|
|
${objpfx}tst-gettext > ${objpfx}tst-gettext.out ${objpfx}domaindir
|
|
|
|
|
|
|
|
exit $?
|