diff --git a/t/139-ssl-cert-by.t b/t/139-ssl-cert-by.t index 3ab8eae5..95e86a64 100644 --- a/t/139-ssl-cert-by.t +++ b/t/139-ssl-cert-by.t @@ -8,7 +8,7 @@ my $NginxBinary = $ENV{'TEST_NGINX_BINARY'} || 'nginx'; my $openssl_version = eval { `$NginxBinary -V 2>&1` }; if ($openssl_version =~ m/built with OpenSSL (0|1\.0\.(?:0|1[^\d]|2[a-d]).*)/) { - plan(skip_all => "too old OpenSSL, need 1.0.2e, was $1"); + plan(skip_all => "too old OpenSSL, need >= 1.0.2e, was $1"); } else { plan tests => repeat_each() * (blocks() * 6 + 5); } diff --git a/t/140-ssl-c-api.t b/t/140-ssl-c-api.t index 3401dace..4f775b5c 100644 --- a/t/140-ssl-c-api.t +++ b/t/140-ssl-c-api.t @@ -8,7 +8,7 @@ my $NginxBinary = $ENV{'TEST_NGINX_BINARY'} || 'nginx'; my $openssl_version = eval { `$NginxBinary -V 2>&1` }; if ($openssl_version =~ m/built with OpenSSL (0|1\.0\.(?:0|1[^\d]|2[a-d]).*)/) { - plan(skip_all => "too old OpenSSL, need 1.0.2e, was $1"); + plan(skip_all => "too old OpenSSL, need >= 1.0.2e, was $1"); } else { plan tests => repeat_each() * (blocks() * 5 - 1); } diff --git a/t/162-ssl-client-hello-by.t b/t/162-ssl-client-hello-by.t index 109c357a..8c6bcf62 100644 --- a/t/162-ssl-client-hello-by.t +++ b/t/162-ssl-client-hello-by.t @@ -8,7 +8,7 @@ my $NginxBinary = $ENV{'TEST_NGINX_BINARY'} || 'nginx'; my $openssl_version = eval { `$NginxBinary -V 2>&1` }; if ($openssl_version =~ m/built with OpenSSL (0\S*|1\.0\S*|1\.1\.0\S*)/) { - plan(skip_all => "too old OpenSSL, need 1.1.1, was $1"); + plan(skip_all => "too old OpenSSL, need >= 1.1.1, was $1"); } else { plan tests => repeat_each() * (blocks() * 6 + 5); } diff --git a/t/163-ssl-two-verification.t b/t/163-ssl-two-verification.t index a15369c7..394a43c9 100644 --- a/t/163-ssl-two-verification.t +++ b/t/163-ssl-two-verification.t @@ -9,7 +9,7 @@ my $NginxBinary = $ENV{'TEST_NGINX_BINARY'} || 'nginx'; my $openssl_version = eval { `$NginxBinary -V 2>&1` }; if ($openssl_version =~ m/built with OpenSSL (0\S*|1\.0\S*|1\.1\.0\S*)/) { - plan(skip_all => "too old OpenSSL, need 1.1.1, was $1"); + plan(skip_all => "too old OpenSSL, need >= 1.1.1, was $1"); } else { plan tests => repeat_each() * (blocks() * 7); }