diff options
-rw-r--r-- | ext/xsl/tests/bug71540.phpt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/xsl/tests/bug71540.phpt b/ext/xsl/tests/bug71540.phpt index a268021765..ba034824fe 100644 --- a/ext/xsl/tests/bug71540.phpt +++ b/ext/xsl/tests/bug71540.phpt @@ -3,6 +3,7 @@ Bug #71540 (NULL pointer dereference in xsl_ext_function_php()) --SKIPIF-- <?php if (!extension_loaded('xsl')) die("skip Extension XSL is required\n"); +if (LIBXML_VERSION >= 20903) die('skip this test is for PHP linked with libxml2 < 2.9.3 only') ?> --FILE-- <?php @@ -66,4 +67,4 @@ Warning: XSLTProcessor::transformToXml(): XPath evaluation returned no result. i <h2>Users</h2> <table><tr><td></td></tr></table> </body></html> -DONE
\ No newline at end of file +DONE |