tony2001                Tue Apr 10 21:38:20 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/soap/tests/bugs        bug34657.phpt 
  Log:
  skip test if openssl is present
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug34657.phpt?r1=1.1.2.3&r2=1.1.2.4&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug34657.phpt
diff -u php-src/ext/soap/tests/bugs/bug34657.phpt:1.1.2.3 
php-src/ext/soap/tests/bugs/bug34657.phpt:1.1.2.4
--- php-src/ext/soap/tests/bugs/bug34657.phpt:1.1.2.3   Mon Apr  2 11:44:40 2007
+++ php-src/ext/soap/tests/bugs/bug34657.phpt   Tue Apr 10 21:38:20 2007
@@ -1,7 +1,16 @@
 --TEST--
 Bug #34657 (If you get a communication problem when loading the WSDL, it 
fatal's)
 --SKIPIF--
-<?php require_once('skipif.inc'); ?>
+<?php 
+require_once('skipif.inc'); 
+if (extension_loaded("openssl")) {
+       /* 
+        when openssl loaded, tcp stream is less verbose, so some error 
messages are missing 
+        so let's skip the test in this case  
+        */
+       die("skip");
+}
+?>
 --FILE--
 <?php
 try {

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

Reply via email to