aboutsummaryrefslogtreecommitdiff
path: root/test/recipes/70-test_sslsessiontick.t
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-05-04 10:13:15 +0100
committerMatt Caswell <matt@openssl.org>2016-05-04 10:20:02 +0100
commitb273fcc565fbe90b1f9d2526640fcc55832bbeb6 (patch)
treea8ec98d33bef649650101875786f80f0632e3289 /test/recipes/70-test_sslsessiontick.t
parentea837d79f91f481d7b07ea7a985b35c24e9dcc79 (diff)
downloadopenssl-b273fcc565fbe90b1f9d2526640fcc55832bbeb6.zip
openssl-b273fcc565fbe90b1f9d2526640fcc55832bbeb6.tar.gz
openssl-b273fcc565fbe90b1f9d2526640fcc55832bbeb6.tar.bz2
Fix the no-tls option
The TLSProxy based tests don't work when TLS is disabled so we shouldn't run them. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/recipes/70-test_sslsessiontick.t')
-rwxr-xr-xtest/recipes/70-test_sslsessiontick.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/recipes/70-test_sslsessiontick.t b/test/recipes/70-test_sslsessiontick.t
index 1c21797..2bf19e4 100755
--- a/test/recipes/70-test_sslsessiontick.t
+++ b/test/recipes/70-test_sslsessiontick.t
@@ -24,6 +24,9 @@ plan skip_all => "$test_name needs the dynamic engine feature enabled"
plan skip_all => "$test_name needs the sock feature enabled"
if disabled("sock");
+plan skip_all => "$test_name needs TLS enabled"
+ if alldisabled(available_protocols("tls"));
+
$ENV{OPENSSL_ia32cap} = '~0x200000200000000';
sub checkmessages($$$$$$);