Give test code access to internal macros of the library

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine
2026-03-09 15:39:06 +01:00
parent dbfd1a6fa9
commit 0384a5929a
2 changed files with 7 additions and 6 deletions
-6
View File
@@ -22,12 +22,6 @@
#include "mbedtls/memory_buffer_alloc.h"
#endif
#if defined(TF_PSA_CRYPTO_VERSION_NUMBER)
#include "tf_psa_crypto_common.h"
#else
#include "common.h"
#endif
/**
* \brief This macro tests the expression passed to it as a test step or
* individual test in a test case.
+7
View File
@@ -33,4 +33,11 @@
* is deemed necessary in test headers. */
#include <test/build_info.h>
/* Give test code access to internal macros of the library. */
#if defined(TF_PSA_CRYPTO_VERSION_NUMBER)
#include "tf_psa_crypto_common.h"
#else
#include "common.h"
#endif
#endif /* TEST_TEST_COMMON_H */