utest: UTEST_THREAD_TC -> RT_UTEST_THREAD

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 19:41:09 +08:00
committed by R b b666
parent 454a0c3a27
commit ff9f1770c7
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ CONFIG_RT_USING_CI_ACTION=y
CONFIG_RT_UTEST_OBJECT=y
CONFIG_RT_UTEST_IRQ=y
CONFIG_UTEST_THREAD_TC=y
CONFIG_RT_UTEST_THREAD=y
CONFIG_RT_UTEST_DRIVERS_CORE=y
CONFIG_UTEST_ATOMIC_TC=y
CONFIG_UTEST_HOOKLIST_TC=y

View File

@@ -56,7 +56,7 @@ config RT_UTEST_MAILBOX
bool "mailbox test"
default n
config UTEST_THREAD_TC
config RT_UTEST_THREAD
bool "thread test"
default n
select RT_USING_TIMER_SOFT

View File

@@ -41,7 +41,7 @@ if GetDepend(['RT_UTEST_MUTEX']):
if GetDepend(['RT_UTEST_MAILBOX']):
src += ['mailbox_tc.c']
if GetDepend(['UTEST_THREAD_TC']):
if GetDepend(['RT_UTEST_THREAD']):
src += ['thread_tc.c']
src += ['thread_overflow_tc.c']
src += ['thread_suspend_tc.c']