lbarnaud                Thu May 14 16:17:10 2009 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/soap/tests/schema      skipif.inc 
    /php-src/ext/soap/tests     typemap001.phpt typemap003.phpt 
                                typemap005.phpt typemap007.phpt 
  Log:
  MFB: fix skipifs
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/schema/skipif.inc?r1=1.1&r2=1.1.6.1&diff_format=u
Index: php-src/ext/soap/tests/schema/skipif.inc
diff -u php-src/ext/soap/tests/schema/skipif.inc:1.1 
php-src/ext/soap/tests/schema/skipif.inc:1.1.6.1
--- php-src/ext/soap/tests/schema/skipif.inc:1.1        Wed Jan 28 13:33:48 2004
+++ php-src/ext/soap/tests/schema/skipif.inc    Thu May 14 16:17:10 2009
@@ -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');
 ?>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap001.phpt?r1=1.1.2.3&r2=1.1.2.4&diff_format=u
Index: php-src/ext/soap/tests/typemap001.phpt
diff -u php-src/ext/soap/tests/typemap001.phpt:1.1.2.3 
php-src/ext/soap/tests/typemap001.phpt:1.1.2.4
--- php-src/ext/soap/tests/typemap001.phpt:1.1.2.3      Wed Jan  9 16:45:28 2008
+++ php-src/ext/soap/tests/typemap001.phpt      Thu May 14 16:17:10 2009
@@ -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--
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap003.phpt?r1=1.1.2.2&r2=1.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/typemap003.phpt
diff -u php-src/ext/soap/tests/typemap003.phpt:1.1.2.2 
php-src/ext/soap/tests/typemap003.phpt:1.1.2.3
--- php-src/ext/soap/tests/typemap003.phpt:1.1.2.2      Wed Jan  9 16:45:28 2008
+++ php-src/ext/soap/tests/typemap003.phpt      Thu May 14 16:17:10 2009
@@ -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--
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap005.phpt?r1=1.1.2.3&r2=1.1.2.4&diff_format=u
Index: php-src/ext/soap/tests/typemap005.phpt
diff -u php-src/ext/soap/tests/typemap005.phpt:1.1.2.3 
php-src/ext/soap/tests/typemap005.phpt:1.1.2.4
--- php-src/ext/soap/tests/typemap005.phpt:1.1.2.3      Wed Jan  9 16:45:28 2008
+++ php-src/ext/soap/tests/typemap005.phpt      Thu May 14 16:17:10 2009
@@ -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--
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap007.phpt?r1=1.1.2.2&r2=1.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/typemap007.phpt
diff -u php-src/ext/soap/tests/typemap007.phpt:1.1.2.2 
php-src/ext/soap/tests/typemap007.phpt:1.1.2.3
--- php-src/ext/soap/tests/typemap007.phpt:1.1.2.2      Wed Jan  9 16:45:28 2008
+++ php-src/ext/soap/tests/typemap007.phpt      Thu May 14 16:17:10 2009
@@ -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--



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to