Update.
[glibc.git] / localedata / tst-locale.sh
blobdb94acb64fda6bfd517fed5214c2a2d2091be22a
1 #! /bin/sh
2 # Testing the implementation of localedata.
3 # Copyright (C) 1998 Free Software Foundation, Inc.
4 # This file is part of the GNU C Library.
5 # Contributed by Andreas Jaeger, <aj@arthur.rhein-neckar.de>, 1998.
7 # The GNU C Library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Library General Public License as
9 # published by the Free Software Foundation; either version 2 of the
10 # License, or (at your option) any later version.
12 # The GNU C Library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Library General Public License for more details.
17 # You should have received a copy of the GNU Library General Public
18 # License along with the GNU C Library; see the file COPYING.LIB. If
19 # not, write to the Free Software Foundation, Inc.,
20 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 common_objpfx=$1; shift
24 test_locale ()
26 charmap=$1
27 input=$2
28 out=$3
29 rep=$4
30 I18NPATH=. \
31 ${common_objpfx}elf/ld.so --library-path $common_objpfx \
32 ${common_objpfx}locale/localedef --quiet -c -f $charmap -i $input \
33 --repertoire-map $rep ${common_objpfx}localedata/$out
35 if [ $? -ne 0 ]; then
36 echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
37 "Outputdir: \"${out}\" failed"
38 exit 1
42 # I take this out for now since it is a known problem
43 # (see [PR libc/229] and [PR libc/454]. --drepper
44 # test_locale IBM437 de_DE de_DE.437 mnemonic.ds
45 test_locale tests/test1.cm tests/test1.def test1 mnemonic.ds
46 test_locale tests/test2.cm tests/test2.def test2 mnemonic.ds
47 test_locale tests/test3.cm tests/test3.def test3 mnemonic.ds
48 test_locale tests/test4.cm tests/test4.def test4 mnemonic.ds
49 # I know that multi-byte charsets do not yet work. --drepper
50 # test_locale tests/test5.cm tests/test5.def test5 mnemonic.ds
52 exit 0
54 # Local Variables:
55 # mode:shell-script
56 # End: