From: Matt Caswell Date: Fri, 22 Oct 2021 15:09:44 +0000 (+0100) Subject: Fix no-cmac X-Git-Tag: openssl-3.0.1~191 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=c94931e636b4a16c01d5f93cff08386e4ba43b11 Fix no-cmac Reviewed-by: Bernd Edlinger Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16894) (cherry picked from commit ef2fb64f9dfde1965cb0b8a5f8765c4f467c1604) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index b241387b5e..2c604daae9 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -3988,6 +3988,12 @@ static int test_signatures_with_engine(int tst) size_t maclen = 0; int ret; +# ifdef OPENSSL_NO_CMAC + /* Skip CMAC tests in a no-cmac build */ + if (tst <= 1) + return 1; +# endif + if (!TEST_ptr(e = ENGINE_by_id(engine_id))) return 0;