# HG changeset patch # User Sergey Kandaurov # Date 1542644895 -10800 # Node ID 94bcad5611af92a90083cc98f816421640403c79 # Parent de181159f279d889b88101036131ebcfeaf43578 Tests: skip OCSP stapling and multiple cert tests with BoringSSL. diff --git a/ssl_certificates.t b/ssl_certificates.t --- a/ssl_certificates.t +++ b/ssl_certificates.t @@ -33,6 +33,8 @@ plan(skip_all => 'Net::SSLeay not instal my $t = Test::Nginx->new()->has(qw/http http_ssl/)->has_daemon('openssl'); +plan(skip_all => 'no multiple certificates') if $t->has_module('BoringSSL'); + $t->write_file_expand('nginx.conf', <<'EOF'); %%TEST_GLOBALS%% diff --git a/ssl_stapling.t b/ssl_stapling.t --- a/ssl_stapling.t +++ b/ssl_stapling.t @@ -34,8 +34,11 @@ eval { }; plan(skip_all => 'Net::SSLeay not installed or too old') if $@; -my $t = Test::Nginx->new()->has(qw/http http_ssl/)->has_daemon('openssl') - ->plan(9)->write_file_expand('nginx.conf', <<'EOF'); +my $t = Test::Nginx->new()->has(qw/http http_ssl/)->has_daemon('openssl'); + +plan(skip_all => 'no OCSP stapling') if $t->has_module('BoringSSL'); + +$t->plan(9)->write_file_expand('nginx.conf', <<'EOF'); %%TEST_GLOBALS%%