]> granicus.if.org Git - php/commitdiff
skip test with openssl < 1.1.0
authorRemi Collet <remi@php.net>
Thu, 25 Feb 2021 12:52:35 +0000 (13:52 +0100)
committerRemi Collet <remi@php.net>
Thu, 25 Feb 2021 12:52:35 +0000 (13:52 +0100)
The test fails, but without any crash
(this test is designed to catch a crash)

ext/openssl/tests/bug80747.phpt

index b9bba3687008cb935c9bc9ded2f099965a405955..327c916688492462bd1f1e46a3a792d82548e212 100644 (file)
@@ -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