1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

skip test if openssl is present

This commit is contained in:
Antony Dovgal
2007-04-10 21:38:20 +00:00
parent 5f48fbb4da
commit e145f1aa2a
+10 -1
View File
@@ -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 {