1997-08-29 03:19:12 +02:00
|
|
|
#! /bin/sh
|
1998-01-25 20:46:25 +01:00
|
|
|
# Testing the implementation of strfmon(3).
|
1998-04-30 20:52:38 +02:00
|
|
|
# Copyright (C) 1996, 1997, 1998 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.
|
|
|
|
#
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with the GNU C Library; see the file COPYING.LIB. 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
|
|
|
|
datafile=$2
|
1997-08-29 03:19:12 +02:00
|
|
|
|
1998-01-25 20:46:25 +01:00
|
|
|
DEBUG=0
|
1997-08-29 03:19:12 +02:00
|
|
|
here=`pwd`
|
|
|
|
|
1998-01-25 20:46:25 +01:00
|
|
|
lang=`sed -e '/^#/d' -e '/^$/d' -e '/^C /d' -e 's/^\([^ ]*\).*/\1/' $datafile | sort | uniq`
|
|
|
|
|
1997-08-29 03:19:12 +02:00
|
|
|
# Generate data files.
|
|
|
|
for l in $lang; do
|
1998-01-25 20:46:25 +01:00
|
|
|
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
|
|
|
cn=locales/$cns
|
|
|
|
fn=charmaps/`echo $l | sed 's/.*[.]\([^.]*\)/\1/'`
|
1998-04-30 20:52:38 +02:00
|
|
|
I18NPATH=. \
|
1998-02-24 16:22:29 +01:00
|
|
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
|
|
|
${common_objpfx}locale/localedef \
|
1998-01-25 20:46:25 +01:00
|
|
|
--quiet -i $cn -f $fn ${common_objpfx}localedata/$cns
|
1997-08-29 03:19:12 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
# Run the tests.
|
1998-01-25 20:46:25 +01:00
|
|
|
IFS=" " # This is a TAB
|
|
|
|
while read locale format value expect; do
|
|
|
|
if [ -n "$format" ]; then
|
|
|
|
LOCPATH=${common_objpfx}localedata \
|
1998-02-24 16:22:29 +01:00
|
|
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
|
|
|
${common_objpfx}localedata/tst-fmon \
|
1998-01-25 20:46:25 +01:00
|
|
|
"$locale" "$format" "$value" "$expect"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
if [ $DEBUG -eq 1 ]; then
|
|
|
|
echo "Locale: \"${locale}\" Format: \"${format}\"" \
|
|
|
|
"Value: \"${value}\" Expect: \"${expect}\" passed"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Locale: \"${locale}\" Format: \"${format}\"" \
|
|
|
|
"Value: \"${value}\" Expect: \"${expect}\" failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
1998-02-24 16:22:29 +01:00
|
|
|
done < $datafile
|
1997-08-29 03:19:12 +02:00
|
|
|
|
1998-01-25 20:46:25 +01:00
|
|
|
exit $?
|
1997-08-29 03:19:12 +02:00
|
|
|
# Local Variables:
|
|
|
|
# mode:shell-script
|
|
|
|
# End:
|