1997-08-29 03:19:12 +02:00
|
|
|
#! /bin/sh
|
1998-01-25 20:46:25 +01:00
|
|
|
# Testing the implementation of strfmon(3).
|
2004-01-02 01:59:51 +01:00
|
|
|
# Copyright (C) 1996-1998, 2000, 2003, 2004 Free Software Foundation, Inc.
|
1998-01-25 20:46:25 +01:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
# Contributed by Jochen Hein <jochen.hein@delphi.central.de>, 1997.
|
|
|
|
#
|
2001-07-06 06:58:11 +02:00
|
|
|
|
1998-01-25 20:46:25 +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.
|
|
|
|
|
1998-01-25 20:46:25 +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.
|
1997-08-29 03:19:12 +02:00
|
|
|
|
1998-01-25 20:46:25 +01:00
|
|
|
common_objpfx=$1
|
2000-07-12 22:06:44 +02:00
|
|
|
run_program_prefix=$2
|
|
|
|
datafile=$3
|
1997-08-29 03:19:12 +02:00
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
2000-04-10 07:13:54 +02:00
|
|
|
lang=`sed -e '/^#/d' -e '/^$/d' -e '/^C /d' -e '/^tstfmon/d' -e 's/^\([^ ]*\).*/\1/' $datafile | sort | uniq`
|
1998-01-25 20:46:25 +01:00
|
|
|
|
1997-08-29 03:19:12 +02:00
|
|
|
# Generate data files.
|
2000-04-10 07:13:54 +02:00
|
|
|
for cns in `cd ./tst-fmon-locales && ls tstfmon_*`; do
|
|
|
|
cn=tst-fmon-locales/$cns
|
|
|
|
fn=charmaps/ISO-8859-1
|
2000-07-03 22:35:05 +02:00
|
|
|
I18NPATH=. GCONV_PATH=${common_objpfx}iconvdata \
|
2000-07-04 10:22:44 +02:00
|
|
|
LOCPATH=${common_objpfx}localedata LC_ALL=C LANGUAGE=C \
|
2000-07-12 22:06:44 +02:00
|
|
|
${run_program_prefix} ${common_objpfx}locale/localedef \
|
2000-04-10 07:13:54 +02:00
|
|
|
--quiet -i $cn -f $fn ${common_objpfx}localedata/$cns
|
|
|
|
done
|
1997-08-29 03:19:12 +02:00
|
|
|
|
|
|
|
# Run the tests.
|
2003-06-16 09:39:03 +02:00
|
|
|
errcode=0
|
2000-07-12 22:06:44 +02:00
|
|
|
# There's a TAB for IFS
|
|
|
|
while IFS=" " read locale format value expect; do
|
2003-05-01 09:38:32 +02:00
|
|
|
case "$locale" in '#'*) continue ;; esac
|
1998-01-25 20:46:25 +01:00
|
|
|
if [ -n "$format" ]; then
|
2003-12-05 10:51:08 +01:00
|
|
|
expect=`echo "$expect" | sed 's/^\"\(.*\)\"$/\1/'`
|
2004-01-02 01:59:51 +01:00
|
|
|
LOCPATH=${common_objpfx}localedata \
|
|
|
|
GCONV_PATH=${common_objpfx}/iconvdata \
|
|
|
|
${run_program_prefix} ${common_objpfx}localedata/tst-fmon \
|
|
|
|
"$locale" "$format" "$value" "$expect" ||
|
|
|
|
errcode=$?
|
1998-01-25 20:46:25 +01:00
|
|
|
fi
|
1998-02-24 16:22:29 +01:00
|
|
|
done < $datafile
|
1997-08-29 03:19:12 +02:00
|
|
|
|
2003-06-16 09:39:03 +02:00
|
|
|
exit $errcode
|
1997-08-29 03:19:12 +02:00
|
|
|
# Local Variables:
|
|
|
|
# mode:shell-script
|
|
|
|
# End:
|