1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00

more verbose skip reason in test files with not so obvious extension requirements

This commit is contained in:
Olivier DOUCET
2012-02-25 12:10:41 +00:00
parent 6546beecec
commit e613889d50
15 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
XMLReader: Expand into existing DOM documet
--SKIPIF--
<?php if (!extension_loaded("xmlreader")) print "skip";
if (!extension_loaded("dom")) print "skip";
if (!extension_loaded("dom")) print "skip DOM extension required";
$reader = new XMLReader();
if (!method_exists($reader, 'expand')) print "skip";
?>