Skip to content

Commit 4755be5

Browse files
committed
utest: UTEST_IRQ_TC -> RT_UTEST_IRQ
Signed-off-by: Chen Wang <[email protected]>
1 parent a7b22d1 commit 4755be5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/utest/configs/kernel/kernel_basic.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_OBJECT=y
6-
CONFIG_UTEST_IRQ_TC=y
6+
CONFIG_RT_UTEST_IRQ=y
77
CONFIG_UTEST_THREAD_TC=y
88
CONFIG_RT_UTEST_DRIVERS_CORE=y
99
CONFIG_UTEST_ATOMIC_TC=y

src/utest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ config RT_UTEST_SLAB
2121
default n
2222
depends on RT_USING_SLAB
2323

24-
config UTEST_IRQ_TC
24+
config RT_UTEST_IRQ
2525
bool "IRQ test"
2626
default n
2727

src/utest/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if GetDepend(['RT_UTEST_SMALL_MEM']):
1717
if GetDepend(['RT_UTEST_SLAB']):
1818
src += ['slab_tc.c']
1919

20-
if GetDepend(['UTEST_IRQ_TC']):
20+
if GetDepend(['RT_UTEST_IRQ']):
2121
src += ['irq_tc.c']
2222

2323
if GetDepend(['UTEST_SEMAPHORE_TC']):

0 commit comments

Comments
 (0)