Browse Source

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 <mathieu.choplain@st.com>
pull/92793/head
Mathieu Choplain 5 days ago committed by Daniel DeGrasse
parent
commit
697d0f845d
  1. 2
      tests/arch/common/ramfunc/CMakeLists.txt

2
tests/arch/common/ramfunc/CMakeLists.txt

@ -3,7 +3,7 @@ @@ -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})

Loading…
Cancel
Save