summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-04-10 21:38:20 +0000
committerAntony Dovgal <tony2001@php.net>2007-04-10 21:38:20 +0000
commite145f1aa2a3406dd24dd83a495074460976a6772 (patch)
tree213e6eef463cf0e9d879d9ec2fd5eec9bbbb399a /ext
parent5f48fbb4daef50e96c7916d5ffb0ff5bb22ac9ba (diff)
downloadphp-git-e145f1aa2a3406dd24dd83a495074460976a6772.tar.gz
skip test if openssl is present
Diffstat (limited to 'ext')
-rwxr-xr-xext/soap/tests/bugs/bug34657.phpt11
1 files changed, 10 insertions, 1 deletions
diff --git a/ext/soap/tests/bugs/bug34657.phpt b/ext/soap/tests/bugs/bug34657.phpt
index 95e139a57c..034d32828e 100755
--- a/ext/soap/tests/bugs/bug34657.phpt
+++ b/ext/soap/tests/bugs/bug34657.phpt
@@ -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 {