mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
The reflection failure is because the XML extension is used to check the module dependency information, but that extension can be configured to not depend on ext/libxml, resulting in a different output. The solution is to check another extension instead. The test failures in ext/xml/tests are because of different behaviour between libxml2 and Expat error handling. These are expected differences and the solution is to split the tests. Closes GH-13522.
24 lines
460 B
PHP
24 lines
460 B
PHP
--TEST--
|
|
Bug #26614 (CDATA sections skipped on line count)
|
|
--EXTENSIONS--
|
|
xml
|
|
--SKIPIF--
|
|
<?php
|
|
require __DIR__ . '/libxml_expat_skipif.inc';
|
|
skipif(want_expat: true);
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require __DIR__ . '/bug26614.inc';
|
|
?>
|
|
--EXPECT--
|
|
CDATA
|
|
<DATA> at line 2, col 0 (byte 45)
|
|
</DATA> at line 9, col 0 (byte 89)
|
|
Comment
|
|
<DATA> at line 2, col 0 (byte 45)
|
|
</DATA> at line 9, col 0 (byte 89)
|
|
Text
|
|
<DATA> at line 2, col 0 (byte 45)
|
|
</DATA> at line 9, col 0 (byte 89)
|