From: Matt Caswell Date: Mon, 20 Apr 2020 11:27:59 +0000 (+0100) Subject: Fix no-ec X-Git-Tag: openssl-3.0.0-alpha1~14 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=0345f9eccc25eee39c22a09325510ef791de631c Fix no-ec This was missed by Travis because, although it has a no-ec build, the test that failed only runs in a debug build. The Travis job with no-ec is not a debug build and so the test was skipped. Reviewed-by: David von Oheimb Reviewed-by: Nicola Tuveri (Merged from https://github.com/openssl/openssl/pull/11581) --- diff --git a/test/recipes/65-test_cmp_client.t b/test/recipes/65-test_cmp_client.t index 52019942f6..3766a6955e 100644 --- a/test/recipes/65-test_cmp_client.t +++ b/test/recipes/65-test_cmp_client.t @@ -14,8 +14,8 @@ use OpenSSL::Test::Utils; setup("test_cmp_client"); -plan skip_all => "This test is not supported in a no-cmp build" - if disabled("cmp"); +plan skip_all => "This test is not supported in a no-cmp or no-ec build" + if disabled("cmp") || disabled("ec"); plan tests => 1;