Skip to content

Commit 93d3b01

Browse files
committed
tests: CMake: Skip PSA Attestation test if unsupported
The PSA Attestation test suite requires full RTOS and PSA support.
1 parent 6a473ef commit 93d3b01

File tree

1 file changed

+8
-0
lines changed
  • platform/FEATURE_EXPERIMENTAL_API/FEATURE_PSA/TARGET_MBED_PSA_SRV/TESTS/attestation/test

1 file changed

+8
-0
lines changed

platform/FEATURE_EXPERIMENTAL_API/FEATURE_PSA/TARGET_MBED_PSA_SRV/TESTS/attestation/test/CMakeLists.txt

+8
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@ include(${MBED_PATH}/tools/cmake/mbed_greentea.cmake)
1010

1111
project(${TEST_TARGET})
1212

13+
if(MBED_TEST_BAREMETAL)
14+
set(TEST_SKIPPED "RTOS required")
15+
elseif(NOT ("PSA" IN_LIST MBED_TARGET_LABELS AND "EXPERIMENTAL_API" IN_LIST MBED_TARGET_LABELS))
16+
set(TEST_SKIPPED "Experiemental API and PSA required")
17+
endif()
18+
1319
mbed_greentea_add_test(
1420
TEST_NAME
1521
${TEST_TARGET}
1622
TEST_SOURCES
1723
main.cpp
24+
TEST_SKIPPED
25+
${TEST_SKIPPED}
1826
)

0 commit comments

Comments
 (0)