diff options
| author | Anatol Belski <ab@php.net> | 2014-11-28 12:24:32 +0100 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-11-28 12:24:32 +0100 |
| commit | 1552d6ae7bb2b2f13a268b035b2fcb83a7c2a0df (patch) | |
| tree | cad9d50868efdfa4ad8b9b5502031ce92b7e672e /ext | |
| parent | b0645abdccc9ab2bbe8f1de0ecf642cd27662100 (diff) | |
| download | php-git-1552d6ae7bb2b2f13a268b035b2fcb83a7c2a0df.tar.gz | |
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.
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/openssl/tests/stream_server_reneg_limit.phpt | 4 |
1 files changed, 4 insertions, 0 deletions
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-- <?php |
