File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -151,18 +151,19 @@ endif
151
151
152
152
# Auxiliary modules used by tests and some sample programs
153
153
MBEDTLS_CORE_TEST_OBJS := $(patsubst % .c,% .o,$(wildcard \
154
- ${MBEDTLS_TEST_PATH} /src/* .c \
155
- ${MBEDTLS_TEST_PATH} /src/drivers/* .c \
154
+ ${MBEDTLS_PATH}/framework/tests /src/* .c \
155
+ ${MBEDTLS_PATH}/framework/tests /src/drivers/* .c \
156
156
) )
157
157
# Ignore PSA stubs when building for the client side of PSASIM (i.e.
158
158
# CRYPTO_CLIENT && !CRYPTO_C) otherwise there will be functions duplicates.
159
159
ifdef PSASIM
160
160
MBEDTLS_CORE_TEST_OBJS := $(filter-out \
161
- ${MBEDTLS_TEST_PATH} /src/psa_crypto_stubs.o, $(MBEDTLS_CORE_TEST_OBJS ) \
161
+ ${MBEDTLS_PATH}/framework/tests /src/psa_crypto_stubs.o, $(MBEDTLS_CORE_TEST_OBJS ) \
162
162
)
163
163
endif
164
164
# Additional auxiliary modules for TLS testing
165
165
MBEDTLS_TLS_TEST_OBJS = $(patsubst % .c,% .o,$(wildcard \
166
+ ${MBEDTLS_TEST_PATH}/src/* .c \
166
167
${MBEDTLS_TEST_PATH}/src/test_helpers/* .c \
167
168
) )
168
169
You can’t perform that action at this time.
0 commit comments