From 97e986cd74b038eb2043d64a8a50649996db5c65 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 1 Aug 2015 16:50:05 +0300 Subject: [PATCH] tests: Skip MD5 module tests in CONFIG_FIPS=y builds Signed-off-by: Jouni Malinen --- src/crypto/crypto_module_tests.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/crypto/crypto_module_tests.c b/src/crypto/crypto_module_tests.c index ad355f8fc..3b87c7dae 100644 --- a/src/crypto/crypto_module_tests.c +++ b/src/crypto/crypto_module_tests.c @@ -733,6 +733,7 @@ static int test_key_wrap(void) static int test_md5(void) { +#ifndef CONFIG_FIPS struct { char *data; char *hash; @@ -811,6 +812,10 @@ static int test_md5(void) wpa_printf(MSG_INFO, "MD5 test cases passed"); return errors; +#else /* CONFIG_FIPS */ + wpa_printf(MSG_INFO, "MD5 test cases skipped due to CONFIG_FIPS"); + return 0; +#endif /* CONFIG_FIPS */ }