Merge branch 'PHP-5.6'

* PHP-5.6:
  Skip test for old glibc iconv
This commit is contained in:
Christoph M. Becker 2015-09-09 04:33:28 +02:00
commit 502b70c50c

View file

@ -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