utest: UTEST_SELF_PASS_TC -> RT_UTEST_SELF_PASS

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 16:33:14 +08:00
committed by R b b666
parent c2f041640d
commit df4fdc0087
12 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
menu "Utest Self Testcase"
config UTEST_SELF_PASS_TC
config RT_UTEST_SELF_PASS
bool "UTEST Self-test"
select RT_USING_UTEST
default n

View File

@@ -2,7 +2,7 @@ from building import *
src = []
if GetDepend('UTEST_SELF_PASS_TC'):
if GetDepend('RT_UTEST_SELF_PASS'):
src += Glob('TC_*.c')
group = DefineGroup('utc_UTest', src, depend = [''])