Selaa lähdekoodia

utest: UTEST_SMP_SPINLOCK_TC -> RT_UTEST_SMP_SPINLOCK

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
Chen Wang 3 kuukautta sitten
vanhempi
sitoutus
d4533b0a17
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      src/utest/smp/Kconfig
  2. 1 1
      src/utest/smp/SConscript

+ 1 - 1
src/utest/smp/Kconfig

@@ -12,7 +12,7 @@ config RT_UTEST_SMP_INTERRUPT_PRI
     bool "smp interrupt priority test"
     default n
 
-config UTEST_SMP_SPINLOCK_TC
+config RT_UTEST_SMP_SPINLOCK
     bool "smp spinlock test"
     default n
 

+ 1 - 1
src/utest/smp/SConscript

@@ -5,7 +5,7 @@ cwd     = GetCurrentDir()
 src     = []
 CPPPATH = [cwd]
 
-if GetDepend(['UTEST_SMP_SPINLOCK_TC']):
+if GetDepend(['RT_UTEST_SMP_SPINLOCK']):
     src += ['smp_spinlock_tc.c']
     
 if GetDepend(['RT_UTEST_SMP_ASSIGNED_IDLE_CORE']):