Skip to content

Commit fc7310a

Browse files
committed
utest: UTEST_EVENT_TC -> RT_UTEST_EVENT
Signed-off-by: Chen Wang <[email protected]>
1 parent e6d31f2 commit fc7310a

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
@@ -3,7 +3,7 @@ CONFIG_RT_CONSOLEBUF_SIZE=1024
33
CONFIG_RT_USING_CI_ACTION=y
44

55
CONFIG_RT_UTEST_SEMAPHORE=y
6-
CONFIG_UTEST_EVENT_TC=y
6+
CONFIG_RT_UTEST_EVENT=y
77
CONFIG_UTEST_MESSAGEQUEUE_TC=y
88
CONFIG_UTEST_SIGNAL_TC=y
99
CONFIG_UTEST_MUTEX_TC=y

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ config RT_UTEST_SEMAPHORE
3030
default n
3131
depends on RT_USING_SEMAPHORE
3232

33-
config UTEST_EVENT_TC
33+
config RT_UTEST_EVENT
3434
bool "event test"
3535
default n
3636
depends on RT_USING_EVENT

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if GetDepend(['RT_UTEST_IRQ']):
2323
if GetDepend(['RT_UTEST_SEMAPHORE']):
2424
src += ['semaphore_tc.c']
2525

26-
if GetDepend(['UTEST_EVENT_TC']):
26+
if GetDepend(['RT_UTEST_EVENT']):
2727
src += ['event_tc.c']
2828

2929
if GetDepend(['UTEST_TIMER_TC']):

0 commit comments

Comments
 (0)