comparison proxy_ssl_conf_command.t @ 1692:f6795e2e6a4b

Tests: skip ssl_conf_command tests on too old OpenSSL explicitly.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 01 Jun 2021 16:40:15 +0300
parents 4be791074207
children 5ac6efbe5552
comparison
equal deleted inserted replaced
1691:0d8531f744bc 1692:f6795e2e6a4b
22 select STDERR; $| = 1; 22 select STDERR; $| = 1;
23 select STDOUT; $| = 1; 23 select STDOUT; $| = 1;
24 24
25 my $t = Test::Nginx->new()->has(qw/http http_ssl proxy/) 25 my $t = Test::Nginx->new()->has(qw/http http_ssl proxy/)
26 ->has_daemon('openssl'); 26 ->has_daemon('openssl');
27
28 $t->{_configure_args} =~ /OpenSSL ([\d\.]+)/;
29 plan(skip_all => 'OpenSSL too old') unless defined $1 and $1 ge '1.0.2';
27 30
28 $t->write_file_expand('nginx.conf', <<'EOF'); 31 $t->write_file_expand('nginx.conf', <<'EOF');
29 32
30 %%TEST_GLOBALS%% 33 %%TEST_GLOBALS%%
31 34