Skip to content

Commit 1552d6a

Browse files
committed
disable ext/openssl/tests/stream_server_reneg_limit.phpt for windows
This is using the openssl binary which, despite it's contained in the deps, would probably miss all it's environment. It is just prone to failure and thus is not worth it.
1 parent b0645ab commit 1552d6a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/openssl/tests/stream_server_reneg_limit.phpt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ if (!extension_loaded("openssl")) die("skip openssl not loaded");
66
if (!function_exists("proc_open")) die("skip no proc_open");
77
exec('openssl help', $out, $code);
88
if ($code > 0) die("skip couldn't locate openssl binary");
9+
if(substr(PHP_OS, 0, 3) == 'WIN') {
10+
die('skip not suitable for Windows');
11+
}
12+
?>
913
--FILE--
1014
<?php
1115

0 commit comments

Comments
 (0)