From 04e427921ee2af36410388b88ffeb92098d4b4d9 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Mon, 13 Oct 2025 15:44:16 +0800 Subject: [PATCH] utest: fixed UTEST_DEVICE_TC In 01e015450f, "utest: move driver-related case under to drivers," UTEST_DEVICE_TC was replaced with RT_UTEST_DRIVERS_CORE. However, some files are forgot to do this replacement, so this patch address this. Note: In .config, lines like "# CONFIG_XXX is not set" do not need to be modified; they are comments. Furthermore, for BSPs, running "scons --menuconfig" and save the config will automatically replace them. Therefore, no modification is necessary in this case. Signed-off-by: Chen Wang --- examples/utest/configs/kernel/kernel_basic.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/utest/configs/kernel/kernel_basic.cfg b/examples/utest/configs/kernel/kernel_basic.cfg index 571cebde44..5d547aae7d 100644 --- a/examples/utest/configs/kernel/kernel_basic.cfg +++ b/examples/utest/configs/kernel/kernel_basic.cfg @@ -5,7 +5,7 @@ CONFIG_RT_USING_CI_ACTION=y CONFIG_UTEST_OBJECT_TC=y CONFIG_UTEST_IRQ_TC=y CONFIG_UTEST_THREAD_TC=y -CONFIG_UTEST_DEVICE_TC=y +CONFIG_RT_UTEST_DRIVERS_CORE=y CONFIG_UTEST_ATOMIC_TC=y CONFIG_UTEST_HOOKLIST_TC=y CONFIG_UTEST_MTSAFE_KPRINT_TC=y