tests: scripts: configuration-crypto: fix paths for "not grep"

A switch has recently been made from make to cmake to build these tests
but paths for "not grep" were not properly updated.

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti
2026-01-09 22:52:45 +01:00
parent f7173e4389
commit 5aba22b3df

View File

@@ -276,8 +276,8 @@ component_full_no_pkparse_pkwrite () {
make make
# Ensure that PK_[PARSE|WRITE]_C were not re-enabled accidentally (additive config). # Ensure that PK_[PARSE|WRITE]_C were not re-enabled accidentally (additive config).
not grep mbedtls_pk_parse_key ${BUILTIN_SRC_PATH}/pkparse.o not grep mbedtls_pk_parse_key ${CMAKE_BUILTIN_BUILD_DIR}/pkparse.c.o
not grep mbedtls_pk_write_key_der ${BUILTIN_SRC_PATH}/pkwrite.o not grep mbedtls_pk_write_key_der ${CMAKE_BUILTIN_BUILD_DIR}/pkwrite.c.o
msg "test: full without pkparse and pkwrite" msg "test: full without pkparse and pkwrite"
make test make test
@@ -298,7 +298,7 @@ component_full_no_pkwrite () {
make make
# Ensure that PK_WRITE_C was not re-enabled accidentally (additive config). # Ensure that PK_WRITE_C was not re-enabled accidentally (additive config).
not grep mbedtls_pk_write_key_der ${BUILTIN_SRC_PATH}/pkwrite.o not grep mbedtls_pk_write_key_der ${CMAKE_BUILTIN_BUILD_DIR}/pkwrite.c.o
msg "test: full without pkwrite" msg "test: full without pkwrite"
make test make test