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)
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;