Skip to content

Commit 31ca832

Browse files
committed
utest: UTEST_MESSAGEQUEUE_TC -> RT_UTEST_MESSAGEQUEUE
Signed-off-by: Chen Wang <[email protected]>
1 parent 7fd2a08 commit 31ca832

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
@@ -4,7 +4,7 @@ CONFIG_RT_USING_CI_ACTION=y
44

55
CONFIG_RT_UTEST_SEMAPHORE=y
66
CONFIG_RT_UTEST_EVENT=y
7-
CONFIG_UTEST_MESSAGEQUEUE_TC=y
7+
CONFIG_RT_UTEST_MESSAGEQUEUE=y
88
CONFIG_UTEST_SIGNAL_TC=y
99
CONFIG_UTEST_MUTEX_TC=y
1010
CONFIG_UTEST_MAILBOX_TC=y

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ config RT_UTEST_TIMER
3939
bool "timer test"
4040
default n
4141

42-
config UTEST_MESSAGEQUEUE_TC
42+
config RT_UTEST_MESSAGEQUEUE
4343
bool "message queue test"
4444
default n
4545

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if GetDepend(['RT_UTEST_EVENT']):
2929
if GetDepend(['RT_UTEST_TIMER']):
3030
src += ['timer_tc.c']
3131

32-
if GetDepend(['UTEST_MESSAGEQUEUE_TC']):
32+
if GetDepend(['RT_UTEST_MESSAGEQUEUE']):
3333
src += ['messagequeue_tc.c']
3434

3535
if GetDepend(['UTEST_SIGNAL_TC']):

0 commit comments

Comments
 (0)