From a8ec15294f896bb1d45e557c9a45f987dfececd9 Mon Sep 17 00:00:00 2001 From: Tomi Fontanilles Date: Tue, 21 May 2024 10:21:02 +0300 Subject: [PATCH] samples: tfm_psa_test: fix CMake logs Remove TF-M version number and explicit mention of the available test suites; one was missing. Signed-off-by: Tomi Fontanilles --- samples/tfm_integration/tfm_psa_test/CMakeLists.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/samples/tfm_integration/tfm_psa_test/CMakeLists.txt b/samples/tfm_integration/tfm_psa_test/CMakeLists.txt index 0d11c021627..a46893a98e5 100644 --- a/samples/tfm_integration/tfm_psa_test/CMakeLists.txt +++ b/samples/tfm_integration/tfm_psa_test/CMakeLists.txt @@ -29,7 +29,7 @@ if (CONFIG_TFM_PSA_TEST_INITIAL_ATTESTATION AND CONFIG_TFM_QCBOR_PATH STREQUAL " # or only allow it when 'QCBOR_PATH' is set to a local path where QCBOR has # been manually downloaded by the user before starting the build. message(FATAL_ERROR "CONFIG_TFM_PSA_TEST_INITIAL_ATTESTATION is not available " - "with TF-M 2.0.0 due to licensing issues with a dependent library. This " + "with TF-M due to licensing issues with a dependent library. This " "restriction will be removed once licensing issues have been resolved." ) endif() @@ -50,11 +50,7 @@ set(TFM_PSA_TEST_SUITE INITIAL_ATTESTATION) endif() if (NOT DEFINED TFM_PSA_TEST_SUITE) - message(FATAL_ERROR "Please define witch test suite to run: - CONFIG_TFM_PSA_TEST_CRYPTO - CONFIG_TFM_PSA_TEST_PROTECTED_STORAGE - CONFIG_TFM_PSA_TEST_STORAGE - CONFIG_TFM_PSA_TEST_INITIAL_ATTESTATION") + message(FATAL_ERROR "Please define a test suite to run. Refer to the README to see the available test suites.") endif() set(TEST_PSA_API "${TFM_PSA_TEST_SUITE}")