diff options
-rw-r--r-- | ext/xml/tests/bug32001.phpt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/xml/tests/bug32001.phpt b/ext/xml/tests/bug32001.phpt index b5d2a7b0bd..2e9e67d4ca 100644 --- a/ext/xml/tests/bug32001.phpt +++ b/ext/xml/tests/bug32001.phpt @@ -4,6 +4,8 @@ Bug #32001 (xml_parse*() goes into infinite loop when autodetection in effect), <?php require_once("skipif.inc"); if (!extension_loaded('iconv')) die ("skip iconv extension not available"); +if (ICONV_IMPL == 'glibc' && version_compare(ICONV_VERSION, '2.12', '<=')) + die("skip iconv of glibc <= 2.12 is buggy"); ?> --FILE-- <?php |