diff options
author | Anatol Belski <ab@php.net> | 2016-03-14 15:58:40 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-03-14 15:58:40 +0100 |
commit | 8309e12cc7fa2ff0d6786f24e580c09702c2f945 (patch) | |
tree | 1035182813e48a35c72271e16850dfe35baaac2c /ext/xsl | |
parent | 01579ae0a6eda82b72a8d44d5cbdeef50a21ca79 (diff) | |
parent | ab7764d99bbc0f1aecdf9da8cc770fe48a10d5d2 (diff) | |
download | php-git-8309e12cc7fa2ff0d6786f24e580c09702c2f945.tar.gz |
Merge branch 'PHP-7.0'
* PHP-7.0:
fix test
Update NEWS
Diffstat (limited to 'ext/xsl')
-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 |