mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
skip test with openssl < 1.1.0
The test fails, but without any crash (this test is designed to catch a crash)
This commit is contained in:
parent
a480bf8093
commit
ae0585c98e
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@ Bug #80747: Providing RSA key size < 512 generates key that crash PHP
|
|||
--FILE--
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded("openssl")) die("skip");
|
||||
if (!extension_loaded("openssl")) die("skip openssl not loaded");
|
||||
if (OPENSSL_VERSION_NUMBER < 0x10100000) die("skip OpenSSL >= v1.1.0 required");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue