From: Anatol Belski Date: Fri, 28 Nov 2014 11:24:32 +0000 (+0100) Subject: disable ext/openssl/tests/stream_server_reneg_limit.phpt for windows X-Git-Tag: PRE_NATIVE_TLS_MERGE~122^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1552d6ae7bb2b2f13a268b035b2fcb83a7c2a0df;p=php 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. --- diff --git a/ext/openssl/tests/stream_server_reneg_limit.phpt b/ext/openssl/tests/stream_server_reneg_limit.phpt index 3abaa48e41..d355505e54 100644 --- a/ext/openssl/tests/stream_server_reneg_limit.phpt +++ b/ext/openssl/tests/stream_server_reneg_limit.phpt @@ -6,6 +6,10 @@ if (!extension_loaded("openssl")) die("skip openssl not loaded"); if (!function_exists("proc_open")) die("skip no proc_open"); exec('openssl help', $out, $code); if ($code > 0) die("skip couldn't locate openssl binary"); +if(substr(PHP_OS, 0, 3) == 'WIN') { + die('skip not suitable for Windows'); +} +?> --FILE--