From 1552d6ae7bb2b2f13a268b035b2fcb83a7c2a0df Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 28 Nov 2014 12:24:32 +0100 Subject: [PATCH] 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. --- ext/openssl/tests/stream_server_reneg_limit.phpt | 4 ++++ 1 file changed, 4 insertions(+) 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--