mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

The test succeeds with libxml < 2.9.4, and is supposed to succeed with libxml > 2.9.4. Unfortunately, we can't conditionally mark a test case as XFAIL, so we're simply skipping the test for libxml 2.9.4 instead.
21 lines
550 B
PHP
21 lines
550 B
PHP
--TEST--
|
|
Bug #73053 (XML reader with setSchema now fails under 5.6.25)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('xmlreader')) die('skip xmlreader extension not available');
|
|
if (LIBXML_VERSION === 20904) die('skip fails with libxml 2.9.4');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$xmlfile = __DIR__ . DIRECTORY_SEPARATOR . 'bug73053.xml';
|
|
$xsdfile = __DIR__ . DIRECTORY_SEPARATOR . 'bug73053.xsd';
|
|
|
|
$xml = new XMLReader();
|
|
var_dump($xml->open($xmlfile, null, LIBXML_PARSEHUGE));
|
|
$xml->setSchema($xsdfile);
|
|
while($xml->read());
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
bool(true)
|
|
===DONE===
|