1
0
mirror of https://github.com/php/php-src.git synced 2026-04-06 15:43:13 +02:00

skip the test on OpenSSL < 1.1 for now

This commit is contained in:
Anatol Belski
2017-03-23 03:09:30 +01:00
parent 0d834c6922
commit a7f2dbf831

View File

@@ -3,6 +3,7 @@ sni_server
--SKIPIF--
<?php
if (!extension_loaded("openssl")) die("skip openssl not loaded");
if (OPENSSL_VERSION_NUMBER >= 0x10100000) die("skip OpenSSL < v1.1.0 required");
--FILE--
<?php
$serverCode = <<<'CODE'