tony2001 Tue Apr 10 21:38:10 2007 UTC Modified files: /php-src/ext/soap/tests/bugs bug34657.phpt Log: skip test if openssl is present in this case the error messages are different http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug34657.phpt?r1=1.2&r2=1.3&diff_format=u Index: php-src/ext/soap/tests/bugs/bug34657.phpt diff -u php-src/ext/soap/tests/bugs/bug34657.phpt:1.2 php-src/ext/soap/tests/bugs/bug34657.phpt:1.3 --- php-src/ext/soap/tests/bugs/bug34657.phpt:1.2 Mon Apr 2 13:43:29 2007 +++ php-src/ext/soap/tests/bugs/bug34657.phpt Tue Apr 10 21:38:09 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