From f07943d2b11b6f8f6f50e8c300fadada971a0813 Mon Sep 17 00:00:00 2001 From: Alex Volinski Date: Tue, 4 Dec 2018 16:40:13 +0200 Subject: [PATCH] The inject test can run also on single core CPU's such as K64F --- TESTS/psa/entropy_inject/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTS/psa/entropy_inject/main.cpp b/TESTS/psa/entropy_inject/main.cpp index 7ad5c77888..d6f72bfcf1 100644 --- a/TESTS/psa/entropy_inject/main.cpp +++ b/TESTS/psa/entropy_inject/main.cpp @@ -16,7 +16,7 @@ * limitations under the License. */ -#if (!defined(TARGET_PSA) || !defined(COMPONENT_PSA_SRV_IPC)) +#if ((!defined(TARGET_PSA) || (!defined(COMPONENT_PSA_SRV_IPC)) && !defined(MBEDTLS_ENTROPY_NV_SEED))) #error [NOT_SUPPORTED] PSA entropy injection tests can run only on PSA-enabled targets. #endif // TARGET_PSA