diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-02 00:59:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-02 00:59:51 +0000 |
commit | 3451e12ee3b1e47223e6c8a574df2b73a7361226 (patch) | |
tree | adc3751de41b12619eacc8fa12ca108ff048da51 /localedata | |
parent | 23d99b3c2f06c83df68e5d9edba138a4bda1f6da (diff) |
Update.
2004-01-01 Petter Reinholdtsen <pere@hungry.com>
* tst-fmon.data: Add simple test to check left justified currency
values in the C locale.
* tst-fmon.sh: Don't print every line. The program already prints
the failing ones.
Diffstat (limited to 'localedata')
-rw-r--r-- | localedata/ChangeLog | 8 | ||||
-rw-r--r-- | localedata/tst-fmon.data | 4 | ||||
-rwxr-xr-x | localedata/tst-fmon.sh | 18 |
3 files changed, 18 insertions, 12 deletions
diff --git a/localedata/ChangeLog b/localedata/ChangeLog index c37ff7c1d3..27632ca6d3 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,5 +1,13 @@ +2004-01-01 Petter Reinholdtsen <pere@hungry.com> + + * tst-fmon.data: Add simple test to check left justified currency + values in the C locale. + 2004-01-01 Ulrich Drepper <drepper@redhat.com> + * tst-fmon.sh: Don't print every line. The program already prints + the failing ones. + * tst-fmon.c (main): Fix typo in message. 2003-07-06 Petter Reinholdtsen <pere@hungry.com> diff --git a/localedata/tst-fmon.data b/localedata/tst-fmon.data index d7bcb1793f..bbcd821213 100644 --- a/localedata/tst-fmon.data +++ b/localedata/tst-fmon.data @@ -44,6 +44,10 @@ C %#9n 1.23 1.23 C %#9n -1.23 - 1.23 C %=*#9n 1.23 ********1.23 C %=*#9n -1.23 -********1.23 +C %-14#5.4n 1.23 " 1.2300 " +C %-14#5.4n -1.23 "- 1.2300 " +C %-14#5.4n 123.45 " 123.4500 " +C %-14#5.4n 123456 " 123456.0000 " # # check both the german locale and strfmon with that data # diff --git a/localedata/tst-fmon.sh b/localedata/tst-fmon.sh index 95dab36f74..d2bd608280 100755 --- a/localedata/tst-fmon.sh +++ b/localedata/tst-fmon.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of strfmon(3). -# Copyright (C) 1996, 1997, 1998, 2000, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996-1998, 2000, 2003, 2004 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jochen Hein <jochen.hein@delphi.central.de>, 1997. # @@ -45,17 +45,11 @@ while IFS=" " read locale format value expect; do case "$locale" in '#'*) continue ;; esac if [ -n "$format" ]; then expect=`echo "$expect" | sed 's/^\"\(.*\)\"$/\1/'` - if LOCPATH=${common_objpfx}localedata \ - GCONV_PATH=${common_objpfx}/iconvdata \ - ${run_program_prefix} ${common_objpfx}localedata/tst-fmon \ - "$locale" "$format" "$value" "$expect" ; then - echo "Locale: \"${locale}\" Format: \"${format}\"" \ - "Value: \"${value}\" Expected: \"${expect}\" passed" - else - errcode=$? - echo "Locale: \"${locale}\" Format: \"${format}\"" \ - "Value: \"${value}\" Expected: \"${expect}\" failed" - fi + LOCPATH=${common_objpfx}localedata \ + GCONV_PATH=${common_objpfx}/iconvdata \ + ${run_program_prefix} ${common_objpfx}localedata/tst-fmon \ + "$locale" "$format" "$value" "$expect" || + errcode=$? fi done < $datafile |