Skip to content

Commit e6d31f2

Browse files
committed
utest: UTEST_SEMAPHORE_TC -> RT_UTEST_SEMAPHORE
Signed-off-by: Chen Wang <[email protected]>
1 parent 4755be5 commit e6d31f2

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

5-
CONFIG_UTEST_SEMAPHORE_TC=y
5+
CONFIG_RT_UTEST_SEMAPHORE=y
66
CONFIG_UTEST_EVENT_TC=y
77
CONFIG_UTEST_MESSAGEQUEUE_TC=y
88
CONFIG_UTEST_SIGNAL_TC=y

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ config RT_UTEST_IRQ
2525
bool "IRQ test"
2626
default n
2727

28-
config UTEST_SEMAPHORE_TC
28+
config RT_UTEST_SEMAPHORE
2929
bool "semaphore test"
3030
default n
3131
depends on RT_USING_SEMAPHORE

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if GetDepend(['RT_UTEST_SLAB']):
2020
if GetDepend(['RT_UTEST_IRQ']):
2121
src += ['irq_tc.c']
2222

23-
if GetDepend(['UTEST_SEMAPHORE_TC']):
23+
if GetDepend(['RT_UTEST_SEMAPHORE']):
2424
src += ['semaphore_tc.c']
2525

2626
if GetDepend(['UTEST_EVENT_TC']):

0 commit comments

Comments
 (0)