utest: UTEST_SIGNAL_TC -> RT_UTEST_SIGNAL

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 17:05:08 +08:00
committed by R b b666
parent 7f17a580ab
commit 68edf1792f
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ CONFIG_RT_USING_CI_ACTION=y
CONFIG_RT_UTEST_SEMAPHORE=y
CONFIG_RT_UTEST_EVENT=y
CONFIG_RT_UTEST_MESSAGEQUEUE=y
CONFIG_UTEST_SIGNAL_TC=y
CONFIG_RT_UTEST_SIGNAL=y
CONFIG_UTEST_MUTEX_TC=y
CONFIG_UTEST_MAILBOX_TC=y

View File

@@ -43,7 +43,7 @@ config RT_UTEST_MESSAGEQUEUE
bool "message queue test"
default n
config UTEST_SIGNAL_TC
config RT_UTEST_SIGNAL
bool "signal test"
select RT_USING_SIGNALS
default n

View File

@@ -32,7 +32,7 @@ if GetDepend(['RT_UTEST_TIMER']):
if GetDepend(['RT_UTEST_MESSAGEQUEUE']):
src += ['messagequeue_tc.c']
if GetDepend(['UTEST_SIGNAL_TC']):
if GetDepend(['RT_UTEST_SIGNAL']):
src += ['signal_tc.c']
if GetDepend(['UTEST_MUTEX_TC']):