]> git.ipfire.org Git - thirdparty/glibc.git/blob - localedata/tst-locale.sh
Update.
[thirdparty/glibc.git] / localedata / tst-locale.sh
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.
6 #
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.
11 #
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.
16 #
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.
21
22 common_objpfx=$1; shift
23
24 test_locale ()
25 {
26 charmap=$1
27 input=$2
28 out=$3
29 I18NPATH=./locales \
30 ${common_objpfx}elf/ld.so --library-path $common_objpfx \
31 ${common_objpfx}locale/localedef --quiet -c -f $charmap -i $input \
32 ${common_objpfx}localedata/$out
33
34 if [ $? -ne 0 ]; then
35 echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
36 "Outputdir: \"${out}\" failed"
37 exit 1
38 fi
39 }
40
41 # I take this out for now since it is a known problem
42 # (see [PR libc/229] and [PR libc/454]. --drepper
43 # test_locale IBM437 de_DE de_DE.437
44 test_locale tests/test1.cm tests/test1.def test1
45 test_locale tests/test2.cm tests/test2.def test2
46 test_locale tests/test3.cm tests/test3.def test3
47 test_locale tests/test4.cm tests/test4.def test4
48 # I know that multi-byte charsets do not yet work. --drepper
49 # test_locale tests/test5.cm tests/test5.def test5
50
51 exit 0
52
53 # Local Variables:
54 # mode:shell-script
55 # End: