From b90b29255cfed6973be02100e9a8ddb3190760c5 Mon Sep 17 00:00:00 2001 From: Chen Wang Date: Mon, 13 Oct 2025 19:59:28 +0800 Subject: [PATCH] utest: UTEST_SMP_AFFFINITY_TC -> RT_UTEST_SMP_AFFFINITY 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 e7450b477f..29057b90d1 100644 --- a/src/utest/smp/Kconfig +++ b/src/utest/smp/Kconfig @@ -1,6 +1,6 @@ menu "Kernel SMP Testcase" -config UTEST_SMP_AFFFINITY_TC +config RT_UTEST_SMP_AFFFINITY bool "smp affinity and thread priority test1" default n diff --git a/src/utest/smp/SConscript b/src/utest/smp/SConscript index a15753f7be..99b1cfbb49 100644 --- a/src/utest/smp/SConscript +++ b/src/utest/smp/SConscript @@ -17,7 +17,7 @@ if GetDepend(['UTEST_SMP_INTERRUPT_PRI_TC']): if GetDepend(['UTEST_SMP_THREAD_PREEMPTION_TC']): src += ['smp_thread_preemption_tc.c'] -if GetDepend(['UTEST_SMP_AFFFINITY_TC']): +if GetDepend(['RT_UTEST_SMP_AFFFINITY']): src += ['smp_bind_affinity_tc.c'] src += ['smp_affinity_pri1_tc.c'] src += ['smp_affinity_pri2_tc.c']