From 697d0f845d26692929ea3cb15a968c64f6925856 Mon Sep 17 00:00:00 2001 From: Mathieu Choplain Date: Thu, 3 Jul 2025 16:25:07 +0200 Subject: [PATCH] tests: arch: common: ramfunc: fix the project's name in CMake The name used in CMakeLists for this test is "zero_latency_irqs" despite testing the ramfunc feature instead. This might be a copy-paste mistake as it was originally "arm_zero_latency_irqs", which is another test that exists. Change the project name in CMakeLists to match what the test truly is. Signed-off-by: Mathieu Choplain --- tests/arch/common/ramfunc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arch/common/ramfunc/CMakeLists.txt b/tests/arch/common/ramfunc/CMakeLists.txt index 972d08e7e75..8b58aab951c 100644 --- a/tests/arch/common/ramfunc/CMakeLists.txt +++ b/tests/arch/common/ramfunc/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) -project(zero_latency_irqs) +project(ramfunc) FILE(GLOB app_sources src/*.c) target_sources(app PRIVATE ${app_sources})