File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ Install prerequisites suggested in the previous section and follow the below ste
9797 ```
9898 Or build the test binary with the baremetal profile
9999 ```
100- cd cmake_build/<MBED_TARGET>/<PROFILE >/<TOOLCHAIN >/ && cmake ../../../.. -G Ninja -DMBED_TEST_BAREMETAL =ON && cmake --build .
100+ cd cmake_build/<MBED_TARGET>/<PROFILE >/<TOOLCHAIN >/ && cmake ../../../.. -G Ninja -DMBED_GREENTEA_TEST_BAREMETAL =ON && cmake --build .
101101 ```
102102
103103Notes:
Original file line number Diff line number Diff line change 11# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
22# SPDX-License-Identifier: Apache-2.0
33
4- option (MBED_TEST_BAREMETAL OFF )
4+ option (MBED_GREENTEA_TEST_BAREMETAL "Select baremetal greentea tests" OFF )
55
66set (MBED_TARGET_SERIAL_PORT "" CACHE STRING "Serial port of the DUT" )
77set (MBED_TARGET_SERIAL_NUM "" CACHE STRING "USB Serial number of the DUT" )
@@ -67,7 +67,7 @@ macro(mbed_greentea_add_test)
6767 ${MBED_GREENTEA_TEST_SOURCES}
6868 )
6969
70- if (MBED_TEST_BAREMETAL )
70+ if (MBED_GREENTEA_TEST_BAREMETAL )
7171 list (APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-baremetal)
7272 else ()
7373 list (APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-os)
You can’t perform that action at this time.
0 commit comments