From 800e7f79284173385355520cccefc08afe471367 Mon Sep 17 00:00:00 2001 From: Yi Wu Date: Mon, 20 Apr 2026 16:54:33 +0100 Subject: [PATCH] test: remove tfpsacrypto checks in 3.6 DESTDIR install test Signed-off-by: Yi Wu --- tests/scripts/components-build-system.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/components-build-system.sh b/tests/scripts/components-build-system.sh index 2074952ac2..0cdc51a625 100644 --- a/tests/scripts/components-build-system.sh +++ b/tests/scripts/components-build-system.sh @@ -225,14 +225,14 @@ component_test_cmake_install_with_destdir () { if [[ "$OSTYPE" == darwin* ]]; then # On macOS the custom install logic installs libmbedcrypto.dylib # directly without a versioned symlink chain. - for lib in tfpsacrypto mbedcrypto mbedx509 mbedtls; do + for lib in mbedcrypto mbedx509 mbedtls; do [ -f "$install_lib_path/lib${lib}.a" ] [ -e "$install_lib_path/lib${lib}.dylib" ] done else # library/CMakeLists.txt installs libmbedcrypto.so with a versioned # symlink chain on Linux. - for lib in tfpsacrypto mbedcrypto mbedx509 mbedtls; do + for lib in mbedcrypto mbedx509 mbedtls; do if [ "$QUIET" -eq 0 ]; then echo "Checking lib=$lib" fi