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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user