We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96b9f1 commit 792f2e3Copy full SHA for 792f2e3
tools/cmake/mbed_greentea.cmake
@@ -1,7 +1,7 @@
1
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
2
# SPDX-License-Identifier: Apache-2.0
3
4
-option(MBED_TEST_BAREMETAL OFF)
+option(MBED_GREENTEA_TEST_BAREMETAL "Select baremetal greentea tests" OFF)
5
6
set(MBED_TARGET_SERIAL_PORT "" CACHE STRING "Serial port of the DUT")
7
set(MBED_TARGET_SERIAL_NUM "" CACHE STRING "USB Serial number of the DUT")
@@ -66,7 +66,7 @@ macro(mbed_greentea_add_test)
66
${MBED_GREENTEA_TEST_SOURCES}
67
)
68
69
- if(MBED_TEST_BAREMETAL)
+ if(MBED_GREENTEA_TEST_BAREMETAL)
70
list(APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-baremetal)
71
else()
72
list(APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-os)
0 commit comments