diff options
author | Anatol Belski <ab@php.net> | 2016-03-14 15:58:05 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-03-14 15:58:05 +0100 |
commit | ab7764d99bbc0f1aecdf9da8cc770fe48a10d5d2 (patch) | |
tree | 825dab973e97ee2a493b911470c14aae43c7b6df /ext/xsl | |
parent | ec12385f04697406590954b3a58a2f01188ae75c (diff) | |
parent | beda05269c3eb8c6f2c002987b05130f2f19c587 (diff) | |
download | php-git-ab7764d99bbc0f1aecdf9da8cc770fe48a10d5d2.tar.gz |
Merge branch 'PHP-5.6' into PHP-7.0
* PHP-5.6:
fix test
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 |