diff options
| author | Christoph M. Becker <cmb@php.net> | 2015-07-31 19:55:07 +0200 |
|---|---|---|
| committer | Christoph M. Becker <cmb@php.net> | 2015-07-31 19:55:07 +0200 |
| commit | 78eab007a93c97a509f040d6b6cec58e4f9d22c3 (patch) | |
| tree | 70cb144b18331cfdadf0c2ff0b1bfb1731eeffd3 | |
| parent | 3a66a23679487f4feda699ada109ab2b675e9474 (diff) | |
| parent | 6576d809a547b481fecfa8afff1d2ee519a85057 (diff) | |
| download | php-git-78eab007a93c97a509f040d6b6cec58e4f9d22c3.tar.gz | |
Merge branch 'PHP-5.6'
* PHP-5.6:
test fails with old libxml2; skip in this case
| -rw-r--r-- | ext/dom/tests/node_textcontent.phpt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/dom/tests/node_textcontent.phpt b/ext/dom/tests/node_textcontent.phpt index f7312885ba..288278412f 100644 --- a/ext/dom/tests/node_textcontent.phpt +++ b/ext/dom/tests/node_textcontent.phpt @@ -1,7 +1,10 @@ --TEST-- Testing reading and writing to DOMNode::textContent --SKIPIF-- -<?php require_once('skipif.inc'); ?> +<?php +require_once('skipif.inc'); +if (LIBXML_VERSION < 20707) die ('skip requires libxml2-2.7.7 or higher'); +?> --FILE-- <?php /* |
