diff options
author | Jakub Zelenka <bukka@php.net> | 2017-03-13 21:05:09 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2017-03-14 18:13:57 +0000 |
commit | ba70478a215268f89f07c6a033c092e882c3d875 (patch) | |
tree | cbcec4f3e4ae9011d63c66a09655acbb398c14a1 /ext | |
parent | 8e5d080d54766ea5dd8c1bd8ac6c1f7dcd6524c6 (diff) | |
download | php-git-ba70478a215268f89f07c6a033c092e882c3d875.tar.gz |
Skip bug74159 test for OpenSSL lower than 1.0.1
Diffstat (limited to 'ext')
-rw-r--r-- | ext/openssl/tests/bug74159.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/tests/bug74159.phpt b/ext/openssl/tests/bug74159.phpt index aa51a461a3..c031ea2fee 100644 --- a/ext/openssl/tests/bug74159.phpt +++ b/ext/openssl/tests/bug74159.phpt @@ -4,6 +4,7 @@ Bug #74159: Writing a large buffer to non-blocking encrypted streams fails <?php if (!extension_loaded("openssl")) die("skip openssl not loaded"); if (!function_exists("proc_open")) die("skip no proc_open"); +if (OPENSSL_VERSION_NUMBER < 0x10001001) die("skip OpenSSLv1.0.1 required"); ?> --FILE-- <?php |