From b89eada8047eff05bc2ac8f1f11680e3df7e2520 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Mon, 13 Oct 2025 20:00:58 +0800 Subject: [PATCH] utest: UTEST_SMP_ASSIGNED_IDLE_CORE_TC -> RT_UTEST_SMP_ASSIGNED_IDLE_CORE Signed-off-by: Chen Wang --- src/utest/smp/Kconfig | 2 +- src/utest/smp/SConscript | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utest/smp/Kconfig b/src/utest/smp/Kconfig index 29057b90d1..67576e7430 100644 --- a/src/utest/smp/Kconfig +++ b/src/utest/smp/Kconfig @@ -4,7 +4,7 @@ config RT_UTEST_SMP_AFFFINITY bool "smp affinity and thread priority test1" default n -config UTEST_SMP_ASSIGNED_IDLE_CORE_TC +config RT_UTEST_SMP_ASSIGNED_IDLE_CORE bool "smp threads auto assign to idle cores for test" default n diff --git a/src/utest/smp/SConscript b/src/utest/smp/SConscript index 99b1cfbb49..bf0adad768 100644 --- a/src/utest/smp/SConscript +++ b/src/utest/smp/SConscript @@ -8,7 +8,7 @@ CPPPATH = [cwd] if GetDepend(['UTEST_SMP_SPINLOCK_TC']): src += ['smp_spinlock_tc.c'] -if GetDepend(['UTEST_SMP_ASSIGNED_IDLE_CORE_TC']): +if GetDepend(['RT_UTEST_SMP_ASSIGNED_IDLE_CORE']): src += ['smp_assigned_idle_cores_tc.c'] if GetDepend(['UTEST_SMP_INTERRUPT_PRI_TC']):