From 0345f9eccc25eee39c22a09325510ef791de631c Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 20 Apr 2020 12:27:59 +0100 Subject: [PATCH] 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) --- test/recipes/65-test_cmp_client.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1