summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-01-10 14:38:09 +0000
committerMatt Caswell <matt@openssl.org>2017-01-10 23:02:51 +0000
commit5eeb6c6e562937dcfdd4b79619a699a118deadba (patch)
tree27a7342242870aaf58000012011b018d4a23bd96 /test/recipes
parent7a531ee460ef517717105438a8b418dcc85c19b4 (diff)
Fix no-ec following sigalgs refactor
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2157)
Diffstat (limited to 'test/recipes')
-rwxr-xr-xtest/recipes/70-test_sslsigalgs.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/recipes/70-test_sslsigalgs.t b/test/recipes/70-test_sslsigalgs.t
index 51fee42aaf..e5434187a3 100755
--- a/test/recipes/70-test_sslsigalgs.t
+++ b/test/recipes/70-test_sslsigalgs.t
@@ -92,8 +92,8 @@ SKIP: {
}
SKIP: {
- skip "TLSv1.3 or TLSv1.2 disabled", 2
- if disabled("tls1_2") || disabled("tls1_3");
+ skip "EC, TLSv1.3 or TLSv1.2 disabled", 2
+ if disabled("tls1_2") || disabled("tls1_3") || disabled("ec");
#Test 7: Sending a valid sig algs list but not including a sig type that
# matches the certificate should fail in TLSv1.3. We need TLSv1.2
@@ -118,7 +118,7 @@ SKIP: {
}
SKIP: {
- skip "TLSv1.2 disabled", 7 if disabled("tls1_2");
+ skip "EC or TLSv1.2 disabled", 7 if disabled("tls1_2") || disabled("ec");
$proxy->filter(\&sigalgs_filter);