aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2014-12-23 16:16:32 +0100
committerFlorian Weimer <fweimer@redhat.com>2014-12-23 16:16:32 +0100
commit7d81e8d6db95c112c297930a8f2f9617c305529a (patch)
tree1edb9990800a63c18011626329b1b12eab7aca48
parent90aa3d09450903859e2845399729775b19bde50c (diff)
downloadglibc-7d81e8d6db95c112c297930a8f2f9617c305529a.zip
glibc-7d81e8d6db95c112c297930a8f2f9617c305529a.tar.gz
glibc-7d81e8d6db95c112c297930a8f2f9617c305529a.tar.bz2
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.
-rw-r--r--ChangeLog4
-rwxr-xr-xiconvdata/run-iconv-test.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 97eaebb..2b6f0ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh
index 5dfb69f..1d0bf52 100755
--- a/iconvdata/run-iconv-test.sh
+++ b/iconvdata/run-iconv-test.sh
@@ -189,7 +189,7 @@ printf '\016\377\377\377\377\377\377\377' > $temp1
for from in $iconv_modules ; do
echo $ac_n "test decoder $from $ac_c"
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
else
status=$?