summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-09-19 15:08:58 +0200
committerRichard Levitte <richard@levitte.org>2016-09-19 16:29:32 +0200
commit6f99d9c22faf528f174303f997ecbd853d88ffe0 (patch)
tree129a7ab4bb4dcd41f92f32554963e9b0f43dbf6d /test
parent11bb654c60dee6fdfe30eba43e8310437b4b8ab0 (diff)
Fix no-ocsp
Some compilers complain about unused variables, and some tests do not run well without OCSP. Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit 057c676afb2a69b7d2bb9cf6e895e720a2a62b78)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/80-test_ssl_new.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t
index 46c2f4216c..47eab18a95 100644
--- a/test/recipes/80-test_ssl_new.t
+++ b/test/recipes/80-test_ssl_new.t
@@ -44,6 +44,7 @@ my $no_npn = disabled("nextprotoneg");
my $no_ct = disabled("ct");
my $no_ec = disabled("ec");
my $no_ec2m = disabled("ec2m");
+my $no_ocsp = disabled("ocsp");
# Add your test here if the test conf.in generates test cases and/or
# expectations dynamically based on the OpenSSL compile-time config.
@@ -70,7 +71,8 @@ my %skip = (
# We should review this once we have TLS 1.3.
"13-fragmentation.conf" => disabled("tls1_2"),
"14-curves.conf" => disabled("tls1_2") || $no_ec || $no_ec2m,
- "16-dtls-certstatus.conf" => $no_dtls
+ "15-certstatus.conf" => $no_ocsp,
+ "16-dtls-certstatus.conf" => $no_dtls || $no_ocsp,
);
foreach my $conf (@conf_files) {