]> git.ipfire.org Git - thirdparty/glibc.git/blame - iconvdata/run-iconv-test.sh
Move ChangeLog entry to correct file.
[thirdparty/glibc.git] / iconvdata / run-iconv-test.sh
CommitLineData
480bc727
UD
1#! /bin/sh -f
2# Run available iconv(1) tests.
57c69bef 3# Copyright (C) 1998-2012 Free Software Foundation, Inc.
480bc727
UD
4# This file is part of the GNU C Library.
5# Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
41bdb6e2 6
480bc727 7# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
8# modify it under the terms of the GNU Lesser General Public
9# License as published by the Free Software Foundation; either
10# version 2.1 of the License, or (at your option) any later version.
11
480bc727
UD
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
41bdb6e2
AJ
15# Lesser General Public License for more details.
16
17# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
18# License along with the GNU C Library; if not, see
19# <http://www.gnu.org/licenses/>.
480bc727 20
57c69bef
DL
21set -e
22
480bc727
UD
23codir=$1
24
25# We use always the same temporary file.
26temp1=$codir/iconvdata/iconv-test.xxx
27temp2=$codir/iconvdata/iconv-test.yyy
28
29trap "rm -f $temp1 $temp2" 1 2 3 15
30
31# We must tell the iconv(1) program where the modules we want to use can
32# be found.
33GCONV_PATH=$codir/iconvdata
34export GCONV_PATH
35
298f2566
UD
36# We have to have some directories in the library path.
37LIBPATH=$codir:$codir/iconvdata
38
480bc727 39# How the start the iconv(1) program.
b0a01055 40ICONV='$codir/elf/ld.so --library-path $LIBPATH --inhibit-rpath ${from}.so \
310930c1 41 $codir/iconv/iconv_prog'
480bc727 42
822078f6
UD
43# Which echo?
44if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
45 ac_n=-n ac_c= ac_t=
46else
47 ac_n= ac_c='\c' ac_t=
48fi
49
480bc727
UD
50# We read the file named TESTS. All non-empty lines not starting with
51# `#' are interpreted as commands.
5aa8ff62
UD
52failed=0
53while read from to subset targets; do
480bc727 54 # Ignore empty and comment lines.
3b7caeac 55 if test -z "$subset" || test "$from" = '#'; then continue; fi
480bc727 56
310930c1
UD
57 # Expand the variables now.
58 PROG=`eval echo $ICONV`
59
3b7caeac
UD
60 if test -n "$targets"; then
61 for t in $targets; do
62 if test -f testdata/$from; then
93693c4d 63 echo $ac_n " test data: $from -> $t $ac_c"
3b7caeac
UD
64 $PROG -f $from -t $t testdata/$from > $temp1 ||
65 { if test $? -gt 128; then exit 1; fi
93693c4d 66 echo "FAILED"; failed=1; continue; }
3b7caeac
UD
67 echo $ac_n "OK$ac_c"
68 if test -s testdata/$from..$t; then
82ae2712 69 LC_ALL=C cmp $temp1 testdata/$from..$t > /dev/null 2>&1 ||
3b7caeac
UD
70 { echo "/FAILED"; failed=1; continue; }
71 echo $ac_n "/OK$ac_c"
72 fi
73 echo $ac_n " -> $from $ac_c"
74 $PROG -f $t -t $to -o $temp2 $temp1 ||
75 { if test $? -gt 128; then exit 1; fi
93693c4d 76 echo "FAILED"; failed=1; continue; }
3b7caeac 77 echo $ac_n "OK$ac_c"
82ae2712
UD
78 test -s $temp1 &&
79 LC_ALL=C cmp testdata/$from $temp2 > /dev/null 2>&1 ||
3b7caeac
UD
80 { echo "/FAILED"; failed=1; continue; }
81 echo "/OK"
82 rm -f $temp1 $temp2
83 fi
84
85 # Now test some bigger text, entirely in ASCII. If ASCII is no subset
86 # of the coded character set we convert the text to this coded character
87 # set. Otherwise we convert to all the TARGETS.
88 if test $subset = Y; then
93693c4d 89 echo $ac_n " suntzu: $from -> $t -> $to $ac_c"
3b7caeac
UD
90 $PROG -f $from -t $t testdata/suntzus |
91 $PROG -f $t -t $to > $temp1 ||
92 { if test $? -gt 128; then exit 1; fi
93693c4d 93 echo "FAILED"; failed=1; continue; }
3b7caeac 94 echo $ac_n "OK$ac_c"
82ae2712 95 LC_ALL=C cmp testdata/suntzus $temp1 ||
93693c4d 96 { echo "/FAILED"; failed=1; continue; }
3b7caeac
UD
97 echo "/OK"
98 fi
99 rm -f $temp1
93693c4d
UD
100
101 # And tests where iconv(1) has to handle charmaps.
102 if test "$t" = UTF8; then tc=UTF-8; else tc="$t"; fi
103 if test -f ../localedata/charmaps/$from &&
104 test -f ../localedata/charmaps/$tc &&
faaa6f62
UD
105 test -f testdata/$from &&
106 ! grep '<U....><U....>' ../localedata/charmaps/$from > /dev/null; then
93693c4d
UD
107 echo $ac_n "test charmap: $from -> $t $ac_c"
108 $PROG -f ../localedata/charmaps/$from -t ../localedata/charmaps/$tc \
109 testdata/$from > $temp1 ||
110 { if test $? -gt 128; then exit 1; fi
111 echo "FAILED"; failed=1; continue; }
112 echo $ac_n "OK$ac_c"
113 if test -s testdata/$from..$t; then
82ae2712 114 LC_ALL=C cmp $temp1 testdata/$from..$t > /dev/null 2>&1 ||
93693c4d
UD
115 { echo "/FAILED"; failed=1; continue; }
116 echo $ac_n "/OK$ac_c"
117 fi
118 echo $ac_n " -> $from $ac_c"
119 $PROG -t ../localedata/charmaps/$from -f ../localedata/charmaps/$tc \
120 -o $temp2 $temp1 ||
121 { if test $? -gt 128; then exit 1; fi
122 echo "FAILED"; failed=1; continue; }
123 echo $ac_n "OK$ac_c"
82ae2712
UD
124 test -s $temp1 &&
125 LC_ALL=C cmp testdata/$from $temp2 > /dev/null 2>&1 ||
93693c4d
UD
126 { echo "/FAILED"; failed=1; continue; }
127 echo "/OK"
128 rm -f $temp1 $temp2
129 fi
3b7caeac
UD
130 done
131 fi
132
c8d49f05 133 if test "$subset" = N; then
b721a2c0 134 echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c"
3b7caeac
UD
135 $PROG -f ASCII -t $to testdata/suntzus |
136 $PROG -f $to -t ASCII > $temp1 ||
813bb1f1 137 { if test $? -gt 128; then exit 1; fi
93693c4d 138 echo "FAILED"; failed=1; continue; }
822078f6 139 echo $ac_n "OK$ac_c"
82ae2712 140 LC_ALL=C cmp testdata/suntzus $temp1 ||
93693c4d 141 { echo "/FAILED"; failed=1; continue; }
822078f6 142 echo "/OK"
3b7caeac 143 fi
480bc727
UD
144done < TESTS
145
b721a2c0
UD
146# We read the file named TESTS2. All non-empty lines not starting with
147# `#' are interpreted as commands.
148while read utf8 from filename; do
149 # Ignore empty and comment lines.
150 if test -z "$filename" || test "$utf8" = '#'; then continue; fi
151
152 # Expand the variables now.
153 PROG=`eval echo $ICONV`
154
155 # Test conversion to the endianness dependent encoding.
156 echo $ac_n "test encoder: $utf8 -> $from $ac_c"
157 $PROG -f $utf8 -t $from < testdata/${filename}..${utf8} > $temp1
82ae2712
UD
158 LC_ALL=C cmp $temp1 testdata/${filename}..${from}.BE > /dev/null 2>&1 ||
159 LC_ALL=C cmp $temp1 testdata/${filename}..${from}.LE > /dev/null 2>&1 ||
b721a2c0
UD
160 { echo "/FAILED"; failed=1; continue; }
161 echo "OK"
162
163 # Test conversion from the endianness dependent encoding.
164 echo $ac_n "test decoder: $from -> $utf8 $ac_c"
165 $PROG -f $from -t $utf8 < testdata/${filename}..${from}.BE > $temp1
82ae2712 166 LC_ALL=C cmp $temp1 testdata/${filename}..${utf8} > /dev/null 2>&1 ||
b721a2c0
UD
167 { echo "/FAILED"; failed=1; continue; }
168 $PROG -f $from -t $utf8 < testdata/${filename}..${from}.LE > $temp1
82ae2712 169 LC_ALL=C cmp $temp1 testdata/${filename}..${utf8} > /dev/null 2>&1 ||
b721a2c0
UD
170 { echo "/FAILED"; failed=1; continue; }
171 echo "OK"
172
173 # Test byte swapping behaviour.
174 echo $ac_n "test non-BOM: ${from}BE -> ${from}LE $ac_c"
175 $PROG -f ${from}BE -t ${from}LE < testdata/${filename}..${from}.BE > $temp1
82ae2712 176 LC_ALL=C cmp $temp1 testdata/${filename}..${from}.LE > /dev/null 2>&1 ||
b721a2c0
UD
177 { echo "/FAILED"; failed=1; continue; }
178 echo "OK"
179
180 # Test byte swapping behaviour.
181 echo $ac_n "test non-BOM: ${from}LE -> ${from}BE $ac_c"
182 $PROG -f ${from}LE -t ${from}BE < testdata/${filename}..${from}.LE > $temp1
82ae2712 183 LC_ALL=C cmp $temp1 testdata/${filename}..${from}.BE > /dev/null 2>&1 ||
b721a2c0
UD
184 { echo "/FAILED"; failed=1; continue; }
185 echo "OK"
186
187done < TESTS2
188
5aa8ff62 189exit $failed
480bc727
UD
190# Local Variables:
191# mode:shell-script
192# End: