summaryrefslogtreecommitdiff
path: root/ext/libxml
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2015-06-04 00:30:49 +0200
committerAnatol Belski <ab@php.net>2015-06-08 09:40:05 +0200
commit03399721f41fd6410769dfeb388b4b9e244b0a95 (patch)
tree4aa185a93b5ef460d8883f1afd0552543e6d720d /ext/libxml
parent5fed10e109d3dd42cc42e8d21ddc6a3c2c9c4ef7 (diff)
downloadphp-git-03399721f41fd6410769dfeb388b4b9e244b0a95.tar.gz
added SKIPIF conditional to check for DOM availability
Diffstat (limited to 'ext/libxml')
-rw-r--r--ext/libxml/tests/bug69753.phpt1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/libxml/tests/bug69753.phpt b/ext/libxml/tests/bug69753.phpt
index 693e0247a2..6fbe1f85d3 100644
--- a/ext/libxml/tests/bug69753.phpt
+++ b/ext/libxml/tests/bug69753.phpt
@@ -5,6 +5,7 @@ Awaiting upstream fix: https://bugzilla.gnome.org/show_bug.cgi?id=750365
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != 'WIN') die("skip this test is for Windows platforms only");
+if (!extension_loaded('dom')) die('skip dom extension not available');
?>
--FILE--
<?php