php-src/ext/xml/tests/xml_error_string_basic_expat.phpt
Niels Dossche 552ea62e1f Fix GH-13517: Multiple test failures when building with --with-expat
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.
2024-02-27 21:49:01 +01:00

24 lines
459 B
PHP

--TEST--
xml_error_string() - Basic test on 5 error codes
--EXTENSIONS--
xml
--SKIPIF--
<?php
require __DIR__ . '/libxml_expat_skipif.inc';
skipif(want_expat: true);
?>
--FILE--
<?php
require __DIR__ . '/xml_error_string_basic.inc';
?>
--EXPECT--
int(3)
string(16) "no element found"
int(4)
string(31) "not well-formed (invalid token)"
int(5)
string(14) "unclosed token"
int(30)
string(31) "XML declaration not well-formed"
int(7)
string(14) "mismatched tag"