summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJakub Zelenka <bukka@php.net>2017-03-13 21:05:09 +0000
committerJakub Zelenka <bukka@php.net>2017-03-14 18:13:57 +0000
commitba70478a215268f89f07c6a033c092e882c3d875 (patch)
treecbcec4f3e4ae9011d63c66a09655acbb398c14a1 /ext
parent8e5d080d54766ea5dd8c1bd8ac6c1f7dcd6524c6 (diff)
downloadphp-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.phpt1
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