From: Matt Caswell Date: Wed, 18 Dec 2019 11:00:42 +0000 (+0000) Subject: Fix evp_extra_test with no-dh X-Git-Tag: openssl-3.0.0-alpha1~775 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=501fcfb8cfc1aa114ffde437039c2dc2827554ae Fix evp_extra_test with no-dh The new DH test in evp_extra_test.c broke the no-dh build so we add some guards to fix it. Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/10644) --- diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 93680796ea..387e29496f 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -1413,6 +1413,7 @@ static int test_decrypt_null_chunks(void) } #endif /* !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) */ +#ifndef OPENSSL_NO_DH static int test_EVP_PKEY_set1_DH(void) { DH *x942dh, *pkcs3dh; @@ -1447,6 +1448,7 @@ static int test_EVP_PKEY_set1_DH(void) return ret; } +#endif int setup_tests(void) { @@ -1483,7 +1485,9 @@ int setup_tests(void) #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) ADD_TEST(test_decrypt_null_chunks); #endif +#ifndef OPENSSL_NO_DH ADD_TEST(test_EVP_PKEY_set1_DH); +#endif return 1; }