* sysdeps/unix/readdir.c: Make sure we don't modify errno when we reached EOF.
[glibc.git] / localedata / tst-locale.sh
blobb25f9a61f474174131cb9e02dc1ee546bc83f3b6
1 #! /bin/sh
2 # Testing the implementation of localedata.
3 # Copyright (C) 1998, 2000 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
23 localedef=$1; shift
25 test_locale ()
27 charmap=$1
28 input=$2
29 out=$3
30 rep=$4
31 if test $rep; then
32 rep="--repertoire-map $rep"
34 I18NPATH=. GCONV_PATH=${common_objpfx}iconvdata \
35 LOCPATH=${common_objpfx}localedata LC_ALL=C LANGUAGE=C \
36 ${localedef} --quiet -c -f $charmap -i $input \
37 ${rep} ${common_objpfx}localedata/$out
39 if [ $? -ne 0 ]; then
40 echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
41 "Outputdir: \"${out}\" failed"
42 exit 1
43 else
44 echo "locale $out generated succesfully"
48 test_locale IBM437 de_DE de_DE.437
49 test_locale tests/test1.cm tests/test1.def test1
50 test_locale tests/test2.cm tests/test2.def test2
51 test_locale tests/test3.cm tests/test3.def test3
52 test_locale tests/test4.cm tests/test4.def test4
53 test_locale tests/test5.cm tests/test5.def test5 tests/test5.ds
54 test_locale tests/test6.cm tests/test6.def test6 tests/test6.ds
55 test_locale tests/test7.cm tests/test7.def test7
57 exit 0
59 # Local Variables:
60 # mode:shell-script
61 # End: