From 8d606857da2e395ac8c9bbb7131ffe234e588657 Mon Sep 17 00:00:00 2001 From: Ryan Everett Date: Thu, 1 Feb 2024 17:52:13 +0000 Subject: [PATCH] Remove unnecessary dependencies from psa_crypto_helpers.h The psa_test_wrappers.h inclusion was breaking the examples in programs/ on functions with poisoning added Signed-off-by: Ryan Everett --- tests/include/test/psa_crypto_helpers.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/include/test/psa_crypto_helpers.h b/tests/include/test/psa_crypto_helpers.h index 96a8c1c82e..8e790cbab3 100644 --- a/tests/include/test/psa_crypto_helpers.h +++ b/tests/include/test/psa_crypto_helpers.h @@ -16,13 +16,6 @@ #include #endif -#include "test/psa_test_wrappers.h" - -#if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C) \ - && defined(MBEDTLS_PSA_COPY_CALLER_BUFFERS) -#include "test/psa_memory_poisoning_wrappers.h" -#endif - #if defined(MBEDTLS_PSA_CRYPTO_C) /** Initialize the PSA Crypto subsystem. */ #define PSA_INIT() PSA_ASSERT(psa_crypto_init())