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 af311b7 commit e17ead1Copy full SHA for e17ead1
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")
@@ -61,7 +61,7 @@ macro(mbed_greentea_add_test)
61
${MBED_GREENTEA_TEST_SOURCES}
62
)
63
64
- if(MBED_TEST_BAREMETAL)
+ if(MBED_GREENTEA_TEST_BAREMETAL)
65
list(APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-baremetal)
66
else()
67
list(APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-os)
0 commit comments