]> granicus.if.org Git - php/commitdiff
MFB: fix skipifs
authorArnaud Le Blanc <lbarnaud@php.net>
Thu, 14 May 2009 16:17:10 +0000 (16:17 +0000)
committerArnaud Le Blanc <lbarnaud@php.net>
Thu, 14 May 2009 16:17:10 +0000 (16:17 +0000)
ext/soap/tests/schema/skipif.inc
ext/soap/tests/typemap001.phpt
ext/soap/tests/typemap003.phpt
ext/soap/tests/typemap005.phpt
ext/soap/tests/typemap007.phpt

index fa8574e6a25c2cb4a5c82dca7fe736736f71ca48..878088736eb207a269d9ed7c46dd8d50b096eb31 100644 (file)
@@ -1,3 +1,5 @@
 <?php
   if (!extension_loaded('soap')) die('skip soap extension not available');
+  /* xml parser is required by test_schema.inc */
+  if (!extension_loaded('xml'))  die('skip xml extension not available');
 ?>
index 9a75bef073a2914ffff71e68c00738949a091297..b5ed31da857f12e0dc7599fd922c177279571abf 100755 (executable)
@@ -2,6 +2,7 @@
 SOAP typemap 1: SoapServer support for typemap's from_xml()
 --SKIPIF--
 <?php require_once('skipif.inc'); ?>
+<?php if (!extension_loaded('simplexml')) die("skip simplexml extension not available"); ?>
 --INI--
 soap.wsdl_cache_enabled=0
 --FILE--
index cfe1a6d441b77a53ae2917393e9824b3d15db2a3..083b452ba959ac74c96ee7371422f9e7b44c3c83 100755 (executable)
@@ -2,6 +2,7 @@
 SOAP Typemap 3: SoapClient support for typemap's from_xml()
 --SKIPIF--
 <?php require_once('skipif.inc'); ?>
+<?php if (!extension_loaded('simplexml')) die("skip simplexml extension not available"); ?>
 --INI--
 soap.wsdl_cache_enabled=0
 --FILE--
index 1a08d1145c1ff4b4dbbe60f5dc7e4e9934ae3359..369d026b5aeb354a7993ed1da5ec5ad02d9cc587 100755 (executable)
@@ -2,6 +2,7 @@
 SOAP typemap 5: SoapServer support for typemap's from_xml() (without WSDL)
 --SKIPIF--
 <?php require_once('skipif.inc'); ?>
+<?php if (!extension_loaded('simplexml')) die("skip simplexml extension not available"); ?>
 --INI--
 soap.wsdl_cache_enabled=0
 --FILE--
index e8523287f738e15d0513c05574e4e9c1e3f85a85..4fee8fa56bf93f3f13861928b12032f60224d660 100755 (executable)
@@ -2,6 +2,7 @@
 SOAP Typemap 7: SoapClient support for typemap's from_xml() (without WSDL)
 --SKIPIF--
 <?php require_once('skipif.inc'); ?>
+<?php if (!extension_loaded('simplexml')) die("skip simplexml extension not available"); ?>
 --INI--
 soap.wsdl_cache_enabled=0
 --FILE--