Skip to content

Commit a53366c

Browse files
committed
utest: UTEST_SIGNAL_TC -> RT_UTEST_SIGNAL
Signed-off-by: Chen Wang <[email protected]>
1 parent 31ca832 commit a53366c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/utest/configs/kernel/ipc.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CONFIG_RT_USING_CI_ACTION=y
55
CONFIG_RT_UTEST_SEMAPHORE=y
66
CONFIG_RT_UTEST_EVENT=y
77
CONFIG_RT_UTEST_MESSAGEQUEUE=y
8-
CONFIG_UTEST_SIGNAL_TC=y
8+
CONFIG_RT_UTEST_SIGNAL=y
99
CONFIG_UTEST_MUTEX_TC=y
1010
CONFIG_UTEST_MAILBOX_TC=y
1111

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ config RT_UTEST_MESSAGEQUEUE
4343
bool "message queue test"
4444
default n
4545

46-
config UTEST_SIGNAL_TC
46+
config RT_UTEST_SIGNAL
4747
bool "signal test"
4848
select RT_USING_SIGNALS
4949
default n

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if GetDepend(['RT_UTEST_TIMER']):
3232
if GetDepend(['RT_UTEST_MESSAGEQUEUE']):
3333
src += ['messagequeue_tc.c']
3434

35-
if GetDepend(['UTEST_SIGNAL_TC']):
35+
if GetDepend(['RT_UTEST_SIGNAL']):
3636
src += ['signal_tc.c']
3737

3838
if GetDepend(['UTEST_MUTEX_TC']):

0 commit comments

Comments
 (0)