utest: UTEST_MM_LWP_TC -> RT_UTEST_MM_LWP

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 16:39:22 +08:00
committed by R b b666
parent 9ca37156f5
commit e536c49a87
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ menu "Memory Management Subsytem Testcase"
The test covers the Memory Management APIs under the
`components/mm` and `libcpu/[mmu.*|tlb.*|cache.*]`
config UTEST_MM_LWP_TC
config RT_UTEST_MM_LWP
bool "Enable Utest for MM API in lwp"
default n
help

View File

@@ -17,7 +17,7 @@ if GetDepend(['RT_UTEST_MM_API', 'RT_USING_SMART']):
if GetDepend(['RT_UTEST_MM_API', 'RT_USING_MEMBLOCK']):
src += ['mm_memblock_tc.c']
if GetDepend(['UTEST_MM_LWP_TC', 'RT_USING_SMART']):
if GetDepend(['RT_UTEST_MM_LWP', 'RT_USING_SMART']):
src += ['mm_lwp_tc.c']
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)