Commit 697d0f84 authored by Mathieu Choplain's avatar Mathieu Choplain Committed by Daniel DeGrasse
Browse files

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: default avatarMathieu Choplain <mathieu.choplain@st.com>
parent 8f983ccd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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})