提交 0a6793c9 编写于 作者: M Matt Caswell

Fix CT test_sslmessages hangs

The CT tests in test_sslmessages require EC to be available, therefore
we must skip these if no-ec
Reviewed-by: NRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2153)
上级 3cf96e88
...@@ -275,7 +275,8 @@ checkhandshake($proxy, checkhandshake::DEFAULT_HANDSHAKE, ...@@ -275,7 +275,8 @@ checkhandshake($proxy, checkhandshake::DEFAULT_HANDSHAKE,
"ALPN handshake test"); "ALPN handshake test");
SKIP: { SKIP: {
skip "No CT support in this OpenSSL build", 1 if disabled("ct"); skip "No CT and/or EC support in this OpenSSL build", 1
if disabled("ct") || disabled("ec");
#Test 14: SCT handshake (client request only) #Test 14: SCT handshake (client request only)
$proxy->clear(); $proxy->clear();
...@@ -304,7 +305,8 @@ checkhandshake($proxy, checkhandshake::DEFAULT_HANDSHAKE, ...@@ -304,7 +305,8 @@ checkhandshake($proxy, checkhandshake::DEFAULT_HANDSHAKE,
"SCT handshake test (server)"); "SCT handshake test (server)");
SKIP: { SKIP: {
skip "No CT support in this OpenSSL build", 1 if disabled("ct"); skip "No CT and/or EC support in this OpenSSL build", 1
if disabled("ct") || disabled("ec");
#Test 16: SCT handshake (client and server) #Test 16: SCT handshake (client and server)
#There is no built-in server side support for this so we are actually also #There is no built-in server side support for this so we are actually also
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册