提交 73159f40 编写于 作者: M Matt Caswell

Fix no-dtls* builds

Most of the no-dtls* builds were failing due to one test which had an
incorrect "skip" condition.
Reviewed-by: NAndy Polyakov <appro@openssl.org>
上级 f5de06aa
...@@ -756,7 +756,7 @@ sub testssl { ...@@ -756,7 +756,7 @@ sub testssl {
subtest 'DTLS session reuse' => sub { subtest 'DTLS session reuse' => sub {
plan tests => 12; plan tests => 12;
SKIP: { SKIP: {
skip "DTLS disabled", 12 if $no_dtls; skip "DTLS1.0 or DTLS1.2 disabled", 12 if $no_dtls1 || $no_dtls1_2;
ok(run(test([@ssltest, "-dtls", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess]))); ok(run(test([@ssltest, "-dtls", "-server_sess_out", $server_sess, "-client_sess_out", $client_sess])));
ok(run(test([@ssltest, "-dtls", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1.2"]))); ok(run(test([@ssltest, "-dtls", "-server_sess_in", $server_sess, "-client_sess_in", $client_sess, "-should_reuse", "1", "-should_negotiate", "dtls1.2"])));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册