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