mirror of git://sourceware.org/git/glibc.git
iconvdata/run-iconv-test.sh: Actually test iconv modules
Arjun Shankar noticed that this test case was not testing anything because iconv was invoked without the required arguments.
This commit is contained in:
parent
90aa3d0945
commit
7d81e8d6db
|
@ -1,3 +1,7 @@
|
||||||
|
2014-12-23 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
|
* iconvdata/run-iconv-test.sh: Actually test iconv modules.
|
||||||
|
|
||||||
2014-12-22 Joseph Myers <joseph@codesourcery.com>
|
2014-12-22 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
|
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
|
||||||
|
|
|
@ -189,7 +189,7 @@ printf '\016\377\377\377\377\377\377\377' > $temp1
|
||||||
for from in $iconv_modules ; do
|
for from in $iconv_modules ; do
|
||||||
echo $ac_n "test decoder $from $ac_c"
|
echo $ac_n "test decoder $from $ac_c"
|
||||||
PROG=`eval echo $ICONV`
|
PROG=`eval echo $ICONV`
|
||||||
if $PROG < $temp1 >/dev/null 2>&1 ; then
|
if $PROG -f $from -t UTF8 < $temp1 >/dev/null 2>&1 ; then
|
||||||
: # fall through
|
: # fall through
|
||||||
else
|
else
|
||||||
status=$?
|
status=$?
|
||||||
|
|
Loading…
Reference in New Issue