From 68a27e1fbeaa28f9a63e7018d149e1dd109e7855 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Thu, 16 Oct 2025 10:23:21 +0800 Subject: [PATCH] utest: UTEST_MEMPOOL_TC -> RT_UTEST_MEMPOOL Which is missed in PR #10808 "utest: unify configname", add it. Signed-off-by: Chen Wang --- examples/utest/configs/kernel/mem.cfg | 2 +- src/utest/Kconfig | 2 +- src/utest/SConscript | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/utest/configs/kernel/mem.cfg b/examples/utest/configs/kernel/mem.cfg index e2bffb9ecf..df3ce9ef82 100644 --- a/examples/utest/configs/kernel/mem.cfg +++ b/examples/utest/configs/kernel/mem.cfg @@ -4,6 +4,6 @@ CONFIG_RT_USING_CI_ACTION=y CONFIG_RT_UTEST_MEMHEAP=y CONFIG_RT_UTEST_SMALL_MEM=y -CONFIG_UTEST_MEMPOOL_TC=y +CONFIG_RT_UTEST_MEMPOOL=y CONFIG_UTEST_THR_STACK_SIZE=8192 \ No newline at end of file diff --git a/src/utest/Kconfig b/src/utest/Kconfig index 44fda295fc..7f478c591f 100644 --- a/src/utest/Kconfig +++ b/src/utest/Kconfig @@ -79,7 +79,7 @@ menu "Kernel Core" bool "Scheduler Test" default n - config UTEST_MEMPOOL_TC + config RT_UTEST_MEMPOOL bool "Memory Pool Test" default n depends on RT_USING_MEMPOOL diff --git a/src/utest/SConscript b/src/utest/SConscript index 88ff9f54bc..7a532625d1 100644 --- a/src/utest/SConscript +++ b/src/utest/SConscript @@ -55,7 +55,7 @@ if GetDepend(['RT_UTEST_HOOKLIST']): if GetDepend(['RT_UTEST_MTSAFE_KPRINT']): src += ['mtsafe_kprint_tc.c'] -if GetDepend(['UTEST_MEMPOOL_TC']): +if GetDepend(['RT_UTEST_MEMPOOL']): src += ['mempool_tc.c'] # Stressful testcase for scheduler (MP/UP)