Remove $(have-cpp-asm-debuginfo) check
[glibc.git] / localedata / tst-fmon.sh
blobbe6f128725d8acaa866ac86ec8b19eb61a2750f9
1 #! /bin/sh
2 # Testing the implementation of strfmon(3).
3 # Copyright (C) 1996-1998, 2000, 2003, 2004 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
5 # Contributed by Jochen Hein <jochen.hein@delphi.central.de>, 1997.
8 # The GNU C Library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
13 # The GNU C Library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with the GNU C Library; if not, see
20 # <http://www.gnu.org/licenses/>.
22 common_objpfx=$1
23 run_program_prefix=$2
24 datafile=$3
26 here=`pwd`
28 lang=`sed -e '/^#/d' -e '/^$/d' -e '/^C /d' -e '/^tstfmon/d' -e 's/^\([^ ]*\).*/\1/' $datafile | sort | uniq`
30 # Generate data files.
31 for cns in `cd ./tst-fmon-locales && ls tstfmon_*`; do
32 cn=tst-fmon-locales/$cns
33 fn=charmaps/ISO-8859-1
34 I18NPATH=. GCONV_PATH=${common_objpfx}iconvdata \
35 LOCPATH=${common_objpfx}localedata LC_ALL=C LANGUAGE=C \
36 ${run_program_prefix} ${common_objpfx}locale/localedef \
37 --quiet -i $cn -f $fn ${common_objpfx}localedata/$cns
38 done
40 # Run the tests.
41 errcode=0
42 # There's a TAB for IFS
43 while IFS=" " read locale format value expect; do
44 case "$locale" in '#'*) continue ;; esac
45 if [ -n "$format" ]; then
46 expect=`echo "$expect" | sed 's/^\"\(.*\)\"$/\1/'`
47 LOCPATH=${common_objpfx}localedata \
48 GCONV_PATH=${common_objpfx}/iconvdata \
49 ${run_program_prefix} ${common_objpfx}localedata/tst-fmon \
50 "$locale" "$format" "$value" "$expect" ||
51 errcode=$?
53 done < $datafile
55 exit $errcode
56 # Local Variables:
57 # mode:shell-script
58 # End: