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
97
97
```
98
98
Or build the test binary with the baremetal profile
99
99
```
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 .
101
101
```
102
102
103
103
Notes:
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020-2021 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
- option (MBED_TEST_BAREMETAL OFF )
4
+ option (MBED_GREENTEA_TEST_BAREMETAL "Select baremetal greentea tests" OFF )
5
5
6
6
set (MBED_HTRUN_ARGUMENTS "" CACHE STRING "Argument list to forward to htrun." )
7
7
@@ -66,7 +66,7 @@ macro(mbed_greentea_add_test)
66
66
${MBED_GREENTEA_TEST_SOURCES}
67
67
)
68
68
69
- if (MBED_TEST_BAREMETAL )
69
+ if (MBED_GREENTEA_TEST_BAREMETAL )
70
70
list (APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-baremetal )
71
71
else ()
72
72
list (APPEND MBED_GREENTEA_TEST_REQUIRED_LIBS mbed-os )
You can’t perform that action at this time.
0 commit comments