From 3b7caeac2c8d9dc0ceb84137e1e012845d58c90d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 20 Jan 2001 21:20:46 +0000 Subject: Update. * iconvdata/run-iconv-test.sh: Reorgnize a bit to allow running only the ASCII test. * iconvdata/TESTS: Add entries for IBM932 and IBM943. * iconvdata/Makefile (modules): Add IBM932 and IBM943. * iconvdata/gconv-modules: Add entries for IBM932 and IBM943. * iconvdata/ibm932.c: New file. * iconvdata/ibm932.h: New file. * iconvdata/ibm943.c: New file. * iconvdata/ibm943.h: New file. Patches by Masahide Washizawa . --- iconvdata/run-iconv-test.sh | 117 +++++++++++++++++++++++--------------------- 1 file changed, 62 insertions(+), 55 deletions(-) (limited to 'iconvdata/run-iconv-test.sh') diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index 532006cdcb..e20d19689a 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -1,6 +1,6 @@ #! /bin/sh -f # Run available iconv(1) tests. -# Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. +# Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1998. # @@ -51,71 +51,78 @@ fi failed=0 while read from to subset targets; do # Ignore empty and comment lines. - if test -z "$targets" || test "$from" = '#'; then continue; fi + if test -z "$subset" || test "$from" = '#'; then continue; fi # Expand the variables now. PROG=`eval echo $ICONV` - for t in $targets; do - echo $ac_n "test data: $from -> $t $ac_c" - $PROG -f $from -t $t testdata/$from > $temp1 || - { if test $? -gt 128; then exit 1; fi - echo "FAILED" - failed=1 - continue - } - echo $ac_n "OK$ac_c" - if test -s testdata/$from..$t; then - cmp $temp1 testdata/$from..$t > /dev/null 2>&1 || - { echo "/FAILED"; failed=1; continue; } - echo $ac_n "/OK$ac_c" - fi - echo $ac_n " -> $from $ac_c" - $PROG -f $t -t $to -o $temp2 $temp1 || + if test -n "$targets"; then + for t in $targets; do + if test -f testdata/$from; then + echo $ac_n "test data: $from -> $t $ac_c" + $PROG -f $from -t $t testdata/$from > $temp1 || + { if test $? -gt 128; then exit 1; fi + echo "FAILED" + failed=1 + continue + } + echo $ac_n "OK$ac_c" + if test -s testdata/$from..$t; then + cmp $temp1 testdata/$from..$t > /dev/null 2>&1 || + { echo "/FAILED"; failed=1; continue; } + echo $ac_n "/OK$ac_c" + fi + echo $ac_n " -> $from $ac_c" + $PROG -f $t -t $to -o $temp2 $temp1 || + { if test $? -gt 128; then exit 1; fi + echo "FAILED" + failed=1 + continue + } + echo $ac_n "OK$ac_c" + test -s $temp1 && cmp testdata/$from $temp2 > /dev/null 2>&1 || + { echo "/FAILED"; failed=1; continue; } + echo "/OK" + rm -f $temp1 $temp2 + fi + + # Now test some bigger text, entirely in ASCII. If ASCII is no subset + # of the coded character set we convert the text to this coded character + # set. Otherwise we convert to all the TARGETS. + if test $subset = Y; then + echo $ac_n " suntzu: $from -> $t -> $to $ac_c" + $PROG -f $from -t $t testdata/suntzus | + $PROG -f $t -t $to > $temp1 || + { if test $? -gt 128; then exit 1; fi + echo "FAILED" + failed=1 + continue + } + echo $ac_n "OK$ac_c" + cmp testdata/suntzus $temp1 || + { echo "/FAILED"; + failed=1; continue; } + echo "/OK" + fi + rm -f $temp1 + done + fi + + if test "$subset" != Y; then + echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c" + $PROG -f ASCII -t $to testdata/suntzus | + $PROG -f $to -t ASCII > $temp1 || { if test $? -gt 128; then exit 1; fi echo "FAILED" failed=1 continue } echo $ac_n "OK$ac_c" - test -s $temp1 && cmp testdata/$from $temp2 > /dev/null 2>&1 || - { echo "/FAILED"; failed=1; continue; } - echo "/OK" - rm -f $temp1 $temp2 - - # Now test some bigger text, entirely in ASCII. If ASCII is no subset - # of the coded character set we convert the text to this coded character - # set. Otherwise we convert to all the TARGETS. - if test $subset = Y; then - echo $ac_n " suntzu: $from -> $t -> $to $ac_c" - $PROG -f $from -t $t testdata/suntzus | - $PROG -f $t -t $to > $temp1 || - { if test $? -gt 128; then exit 1; fi - echo "FAILED" - failed=1 - continue - } - echo $ac_n "OK$ac_c" - cmp testdata/suntzus $temp1 || - { echo "/FAILED"; - failed=1; continue; } - else - echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c" - $PROG -f ASCII -t $to testdata/suntzus | - $PROG -f $to -t ASCII > $temp1 || - { if test $? -gt 128; then exit 1; fi - echo "FAILED" - failed=1 - continue - } - echo $ac_n "OK$ac_c" - cmp testdata/suntzus $temp1 || - { echo "/FAILED"; - failed=1; continue; } - fi + cmp testdata/suntzus $temp1 || + { echo "/FAILED"; + failed=1; continue; } echo "/OK" - rm -f $temp1 - done + fi done < TESTS exit $failed -- cgit v1.2.3