From b1610b847d2cda5bd196ca0dfa95ea6bbae53740 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Wed, 23 Oct 2024 10:04:52 +0200 Subject: [PATCH] tests fff_fake_contexts: fix board name Use full board name in cmake file. Akin to the fix done in zephyrproject-rtos#80270 zephyrproject-rtos#80270 following the changes from zephyrproject-rtos#77250 In which twister now uses the full board name when calling cmake. Signed-off-by: Alberto Escolar Piedras --- tests/subsys/testsuite/fff_fake_contexts/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/subsys/testsuite/fff_fake_contexts/CMakeLists.txt b/tests/subsys/testsuite/fff_fake_contexts/CMakeLists.txt index 3f71a78ed03..d4cf1a06bf6 100644 --- a/tests/subsys/testsuite/fff_fake_contexts/CMakeLists.txt +++ b/tests/subsys/testsuite/fff_fake_contexts/CMakeLists.txt @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 cmake_minimum_required(VERSION 3.20.0) -if(BOARD STREQUAL unit_testing) +if(BOARD STREQUAL unit_testing/unit_testing) find_package(Zephyr COMPONENTS unittest REQUIRED HINTS $ENV{ZEPHYR_BASE}) set(target testbinary) else()