Bug #25666 (XML namespaces broken in libxml-based SAX interface)
--SKIPIF--
<?php
-if (! @xml_parser_create_ns('ISO-8859-1')) { die("skip xml_parser_create_ns is not supported on this plattform");}
+require_once("skipif.inc");
+if (! @xml_parser_create_ns('ISO-8859-1')) { die("skip xml_parser_create_ns is not supported on this platform");}
?>
--FILE--
<?php
--TEST--
Bug #26528 (HTML entities are not being decoded)
+--SKIPIF--
+<?php
+require_once("skipif.inc");
+?>
--FILE--
<?php
$sample = "<?xml version=\"1.0\"?><test attr=\"angle<bracket\"/>";
--TEST--
Bug #26614 (CDATA sections skipped on line count)
--SKIPIF--
-<?php if (defined("LIBXML_VERSION")) die('skip expat test'); ?>
+<?php
+require_once("skipif.inc");
+if (defined("LIBXML_VERSION")) die('skip expat test');
+?>
--FILE--
<?php
/*
--TEST--
Bug #26614 (CDATA sections skipped on line count)
--SKIPIF--
-<?php if (!defined("LIBXML_VERSION")) die('skip libxml2 test'); ?>
+<?php
+require_once("skipif.inc");
+if (!defined("LIBXML_VERSION")) die('skip libxml2 test');
+?>
--FILE--
<?php
/*
--TEST--
Bug #27908 (default handler not being called)
+--SKIPIF--
+<?php
+require_once("skipif.inc");
+?>
--FILE--
<?php
--TEST--
Bug #30266 (Invalid opcode 137/1/8)
+--SKIPIF--
+<?php
+require_once("skipif.inc");
+?>
--FILE--
<?php
/*
Bug #32001 (xml_parse*() goes into infinite loop when autodetection in effect)
--SKIPIF--
<?php
+require_once("skipif.inc");
if (!extension_loaded('iconv')) {
die ("skip iconv extension not available\n");
}
Bug #35447 (xml_parse_into_struct() chokes on the UTF-8 BOM)
--SKIPIF--
<?php
+require_once("skipif.inc");
if (! @xml_parser_create_ns('ISO-8859-1')) { die("skip xml_parser_create_ns is not supported on this plattform");}
?>
--FILE--
XML parser test, default namespaces
--SKIPIF--
<?php
+require_once("skipif.inc");
if (! @xml_parser_create_ns('ISO-8859-1')) { die("skip xml_parser_create_ns is not supported on this plattform");}
?>
--FILE--
XML parser test, attributes
--SKIPIF--
<?php
+require_once("skipif.inc");
if (! @xml_parser_create_ns('ISO-8859-1')) { die("skip xml_parser_create_ns is not supported on this plattform");}
?>
--FILE--