Update common.mk with test helper object paths

Signed-off-by: David Horstmann <[email protected]>
This commit is contained in:
David Horstmann
2024-11-14 14:19:42 +00:00
parent c2d7f5fc2e
commit fbedae40f1
+4 -3
View File
@@ -127,12 +127,13 @@ else
endif
# Auxiliary modules used by tests and some sample programs
MBEDTLS_CORE_TEST_OBJS = $(patsubst %.c,%.o,$(wildcard \
${MBEDTLS_TEST_PATH}/src/*.c \
${MBEDTLS_TEST_PATH}/src/drivers/*.c \
MBEDTLS_CORE_TEST_OBJS := $(patsubst %.c,%.o,$(wildcard \
${MBEDTLS_PATH}/framework/tests/src/*.c \
${MBEDTLS_PATH}/framework/tests/src/drivers/*.c \
))
# Additional auxiliary modules for TLS testing
MBEDTLS_TLS_TEST_OBJS = $(patsubst %.c,%.o,$(wildcard \
${MBEDTLS_TEST_PATH}/src/*.c \
${MBEDTLS_TEST_PATH}/src/test_helpers/*.c \
))