utest: UTEST_SERIAL_QEMU_TC -> RT_UTEST_SERIAL_QEMU

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
This commit is contained in:
Chen Wang
2025-10-13 16:27:38 +08:00
committed by R b b666
parent 2881803dec
commit 3e7fd6b437
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ menu "Serial Unit Testcases"
int "the number of iterations for the test routine."
default 100
config UTEST_SERIAL_QEMU_TC
config RT_UTEST_SERIAL_QEMU
bool "qemu dedicated tests"
default n

View File

@@ -9,7 +9,7 @@ path = [cwd]
if GetDepend(['UTEST_SERIAL_POSIX_TC']):
src += Glob('posix/*.c')
if GetDepend(['UTEST_SERIAL_QEMU_TC']):
if GetDepend(['RT_UTEST_SERIAL_QEMU']):
src += Glob('qemu/*.c')
group = DefineGroup('utestcases', src, depend = ['RT_UTEST_SERIAL_V2'], CPPPATH = path)