Skip to content

Commit 68a27e1

Browse files
unicornxRbb666
authored andcommitted
utest: UTEST_MEMPOOL_TC -> RT_UTEST_MEMPOOL
Which is missed in PR #10808 "utest: unify configname", add it. Signed-off-by: Chen Wang <[email protected]>
1 parent c1363c7 commit 68a27e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/utest/configs/kernel/mem.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ CONFIG_RT_USING_CI_ACTION=y
44

55
CONFIG_RT_UTEST_MEMHEAP=y
66
CONFIG_RT_UTEST_SMALL_MEM=y
7-
CONFIG_UTEST_MEMPOOL_TC=y
7+
CONFIG_RT_UTEST_MEMPOOL=y
88

99
CONFIG_UTEST_THR_STACK_SIZE=8192

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ menu "Kernel Core"
7979
bool "Scheduler Test"
8080
default n
8181

82-
config UTEST_MEMPOOL_TC
82+
config RT_UTEST_MEMPOOL
8383
bool "Memory Pool Test"
8484
default n
8585
depends on RT_USING_MEMPOOL

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if GetDepend(['RT_UTEST_HOOKLIST']):
5555
if GetDepend(['RT_UTEST_MTSAFE_KPRINT']):
5656
src += ['mtsafe_kprint_tc.c']
5757

58-
if GetDepend(['UTEST_MEMPOOL_TC']):
58+
if GetDepend(['RT_UTEST_MEMPOOL']):
5959
src += ['mempool_tc.c']
6060

6161
# Stressful testcase for scheduler (MP/UP)

0 commit comments

Comments
 (0)