diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-27 09:02:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-27 09:02:51 +0000 |
commit | 76352f64bb2f8c8c5f45d59175642e30264435dd (patch) | |
tree | 403fd423c48d015a09775783d9d8cc992560e49b /localedata/tst-numeric.sh | |
parent | a7ed068ebcc9a24898149961a3cd53efded9e803 (diff) | |
download | glibc-76352f64bb2f8c8c5f45d59175642e30264435dd.tar glibc-76352f64bb2f8c8c5f45d59175642e30264435dd.tar.gz glibc-76352f64bb2f8c8c5f45d59175642e30264435dd.tar.bz2 glibc-76352f64bb2f8c8c5f45d59175642e30264435dd.zip |
Update.
* locale/programs/locale.c (show_info): Use '\177' instead of CHAR_MAX.
Diffstat (limited to 'localedata/tst-numeric.sh')
-rw-r--r-- | localedata/tst-numeric.sh | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/localedata/tst-numeric.sh b/localedata/tst-numeric.sh new file mode 100644 index 0000000000..e6e973feba --- /dev/null +++ b/localedata/tst-numeric.sh @@ -0,0 +1,48 @@ +#! /bin/sh +# Testing the implementation of LC_NUMERIC and snprintf(3). +# Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc. +# 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 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. + +# 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 +# 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. + +common_objpfx=$1 +run_program_prefix=$2 +datafile=$3 + +# Run the tests. +# There's a TAB for IFS +while IFS=" " read locale format value expect; do + if [ -n "$format" ]; then + LOCPATH=${common_objpfx}localedata \ + GCONV_PATH=${common_objpfx}/iconvdata \ + ${run_program_prefix} ${common_objpfx}localedata/tst-numeric \ + "$locale" "$format" "$value" "$expect" + if [ $? -eq 0 ]; then + echo "Locale: \"${locale}\" Format: \"${format}\"" \ + "Value: \"${value}\" Expect: \"${expect}\" passed" + else + echo "Locale: \"${locale}\" Format: \"${format}\"" \ + "Value: \"${value}\" Expect: \"${expect}\" failed" + fi + fi +done < $datafile + +exit $? +# Local Variables: +# mode:shell-script +# End: |