summaryrefslogtreecommitdiff
path: root/iconvdata/run-iconv-test.sh
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-12-28 22:17:16 +0000
committerUlrich Drepper <drepper@redhat.com>1999-12-28 22:17:16 +0000
commit056e03583b52e0d3129832ee4913fca47440f05d (patch)
treecd0734048044536135488c47ed10cf374785106d /iconvdata/run-iconv-test.sh
parent822078f617658091381b55f866a3b4b4392b5fd4 (diff)
Update.
1999-12-28 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove oldgetrlimit and oldsetrlimit definitions.
Diffstat (limited to 'iconvdata/run-iconv-test.sh')
-rwxr-xr-xiconvdata/run-iconv-test.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh
index af9a44f66e..f8b29921eb 100755
--- a/iconvdata/run-iconv-test.sh
+++ b/iconvdata/run-iconv-test.sh
@@ -57,9 +57,9 @@ while read from to subset targets; do
PROG=`eval echo $ICONV`
for t in $targets; do
- echo $ac_n "test data: $from -> $to $ac_c"
+ echo $ac_n "test data: $from -> $t $ac_c"
$PROG -f $from -t $t testdata/$from > $temp1 ||
- { echo "*** conversion from $from to $t failed"; failed=1; continue; }
+ { 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 ||
@@ -68,10 +68,10 @@ while read from to subset targets; do
fi
echo $ac_n " -> $from $ac_c"
$PROG -f $t -t $to -o $temp2 $temp1 ||
- { echo "*** conversion from $t to $to failed"; failed=1; continue; }
+ { echo "FAILED"; failed=1; continue; }
echo $ac_n "OK$ac_c"
test -s $temp1 && cmp testdata/$from $temp2 > /dev/null 2>&1 ||
- { echo "*** $from -> t -> $to conversion failed"; failed=1; continue; }
+ { echo "/FAILED"; failed=1; continue; }
echo "/OK"
rm -f $temp1 $temp2
@@ -79,7 +79,7 @@ while read from to subset targets; do
# of the coded character set we test we convert the test to this
# coded character set. Otherwise we convert to all the TARGETS.
if test $subset = Y; then
- echo $ac_n " suntzu: $from -> $to $ac_c"
+ echo $ac_n " suntzu: $from -> $t -> $to $ac_c"
$PROG -f $from -t $t testdata/suntzus |
$PROG -f $t -t $to > $temp1 ||
{ echo "FAILED"; failed=1;
@@ -89,13 +89,13 @@ while read from to subset targets; do
{ echo "/FAILED";
failed=1; continue; }
else
- echo $ac_n "; suntzu: $from -> ASCII $ac_c"
+ echo $ac_n " suntzu: $from -> ASCII -> $to $ac_c"
$PROG -f ASCII -t $to testdata/suntzus |
$PROG -f $to -t ASCII > $temp1 ||
{ echo "FAILED";
failed=1; continue; }
echo $ac_n "OK$ac_c"
- cmp testdata/suntzus $temp1 ||
+ cmp testdata/suntzus $temp1 ||
{ echo "/FAILED";
failed=1; continue; }
fi