diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-09-29 21:43:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-09-29 21:43:12 +0000 |
commit | 80425c339111cd67404d7f9b200517d31e8d629f (patch) | |
tree | 073ea4a3022a430c571b4e5b054467b61b7a4a6b /iconvdata/run-iconv-test.sh | |
parent | 37b5b6ae767aa626ddeaf03f5b7958e448746270 (diff) | |
download | glibc-80425c339111cd67404d7f9b200517d31e8d629f.tar glibc-80425c339111cd67404d7f9b200517d31e8d629f.tar.gz glibc-80425c339111cd67404d7f9b200517d31e8d629f.tar.bz2 glibc-80425c339111cd67404d7f9b200517d31e8d629f.zip |
Run ASCII->encoding->ASCII suntzus test only if $subset is N.
Diffstat (limited to 'iconvdata/run-iconv-test.sh')
-rwxr-xr-x | iconvdata/run-iconv-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index 8cceef8880..91216447ba 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-2002 Free Software Foundation, Inc. +# Copyright (C) 1998-2002, 2005 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. # @@ -128,7 +128,7 @@ while read from to subset targets; do done fi - if test "$subset" != Y; then + if test "$subset" == N; then echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c" $PROG -f ASCII -t $to testdata/suntzus | $PROG -f $to -t ASCII > $temp1 || |