utest: UTEST_SMALL_MEM_TC -> RT_UTEST_SMALL_MEM

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 16:52:13 +08:00
committed by R b b666
parent c2e1d7dee1
commit 0b8d2b3594
13 changed files with 13 additions and 13 deletions

View File

@@ -406,7 +406,7 @@ CONFIG_RT_UTEST_SELF_PASS=y
#
# Kernel Testcase
#
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
# CONFIG_UTEST_IRQ_TC is not set
# CONFIG_UTEST_SEMAPHORE_TC is not set
# CONFIG_UTEST_EVENT_TC is not set

View File

@@ -222,7 +222,7 @@
/* Kernel Testcase */
#define UTEST_SMALL_MEM_TC
#define RT_UTEST_SMALL_MEM
/* end of Kernel Testcase */
/* CPP11 Testcase */

View File

@@ -612,7 +612,7 @@ CONFIG_RT_UTEST_SELF_PASS=y
# Kernel Testcase
#
CONFIG_RT_UTEST_MEMHEAP=y
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
# CONFIG_UTEST_IRQ_TC is not set
# CONFIG_UTEST_SEMAPHORE_TC is not set
# CONFIG_UTEST_EVENT_TC is not set

View File

@@ -384,7 +384,7 @@
/* Kernel Testcase */
#define RT_UTEST_MEMHEAP
#define UTEST_SMALL_MEM_TC
#define RT_UTEST_SMALL_MEM
/* end of Kernel Testcase */
/* CPP11 Testcase */

View File

@@ -613,7 +613,7 @@ CONFIG_RT_UTEST_SELF_PASS=y
# Kernel Testcase
#
CONFIG_RT_UTEST_MEMHEAP=y
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
# CONFIG_UTEST_IRQ_TC is not set
# CONFIG_UTEST_SEMAPHORE_TC is not set
# CONFIG_UTEST_EVENT_TC is not set

View File

@@ -385,7 +385,7 @@
/* Kernel Testcase */
#define RT_UTEST_MEMHEAP
#define UTEST_SMALL_MEM_TC
#define RT_UTEST_SMALL_MEM
/* end of Kernel Testcase */
/* CPP11 Testcase */

View File

@@ -413,7 +413,7 @@ CONFIG_RT_UTEST_SELF_PASS=y
#
# Kernel Testcase
#
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
# CONFIG_UTEST_IRQ_TC is not set
# CONFIG_UTEST_SEMAPHORE_TC is not set
# CONFIG_UTEST_EVENT_TC is not set

View File

@@ -239,7 +239,7 @@ CONFIG_RT_UTEST_SELF_PASS=y
#
# Kernel Testcase
#
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
# CONFIG_UTEST_IRQ_TC is not set
# CONFIG_UTEST_SEMAPHORE_TC is not set
# CONFIG_UTEST_EVENT_TC is not set

View File

@@ -228,7 +228,7 @@
/* Kernel Testcase */
#define UTEST_SMALL_MEM_TC
#define RT_UTEST_SMALL_MEM
/* end of Kernel Testcase */
/* CPP11 Testcase */

View File

@@ -4,4 +4,4 @@ CONFIG_RT_USING_CI_ACTION=y
CONFIG_RT_UTEST_SELF_PASS=y
CONFIG_RT_UTEST_MEMHEAP=y
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y

View File

@@ -3,7 +3,7 @@ CONFIG_RT_CONSOLEBUF_SIZE=1024
CONFIG_RT_USING_CI_ACTION=y
CONFIG_RT_UTEST_MEMHEAP=y
CONFIG_UTEST_SMALL_MEM_TC=y
CONFIG_RT_UTEST_SMALL_MEM=y
CONFIG_UTEST_MEMPOOL_TC=y
CONFIG_UTEST_THR_STACK_SIZE=8192

View File

@@ -5,7 +5,7 @@ config RT_UTEST_MEMHEAP
default n
depends on RT_USING_MEMHEAP
config UTEST_SMALL_MEM_TC
config RT_UTEST_SMALL_MEM
bool "mem test"
default n
depends on RT_USING_SMALL_MEM

View File

@@ -11,7 +11,7 @@ if GetDepend(['UTEST_OBJECT_TC']):
if GetDepend(['RT_UTEST_MEMHEAP']):
src += ['memheap_tc.c']
if GetDepend(['UTEST_SMALL_MEM_TC']):
if GetDepend(['RT_UTEST_SMALL_MEM']):
src += ['mem_tc.c']
if GetDepend(['UTEST_SLAB_TC']):