summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-04-20 12:27:59 +0100
committerMatt Caswell <matt@openssl.org>2020-04-22 10:23:32 +0100
commit0345f9eccc25eee39c22a09325510ef791de631c (patch)
tree55b66cddf55aaae1af43f01528631ec3251202dc
parent75dbc66e609d78f62e7a6e4c41d580ccb7f340ac (diff)
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 <david.von.oheimb@siemens.com> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/11581)
-rw-r--r--test/recipes/65-test_cmp_client.t4
1 files 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;