mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01: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.
12 lines
303 B
XML
12 lines
303 B
XML
<?xml version="1.0"?>
|
|
<x:books xmlns:x="urn:books">
|
|
<book id="1">
|
|
<author>Writer</author>
|
|
<title>The First Book</title>
|
|
<genre>Fiction</genre>
|
|
<price>44.95</price>
|
|
<pub_date>2000-10-01</pub_date>
|
|
<review>An amazing story of nothing.</review>
|
|
</book>
|
|
</x:books>
|