Просмотр исходного кода

utest: UTEST_SELF_PASS_TC -> RT_UTEST_SELF_PASS

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
Chen Wang 3 месяцев назад
Родитель
Сommit
df4fdc0087

+ 1 - 1
bsp/nuvoton/ma35-rtp/.config

@@ -400,7 +400,7 @@ CONFIG_RT_USING_UTESTCASES=y
 #
 # Utest Self Testcase
 #
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 # end of Utest Self Testcase
 
 #

+ 1 - 1
bsp/nuvoton/ma35-rtp/rtconfig.h

@@ -217,7 +217,7 @@
 
 /* Utest Self Testcase */
 
-#define UTEST_SELF_PASS_TC
+#define RT_UTEST_SELF_PASS
 /* end of Utest Self Testcase */
 
 /* Kernel Testcase */

+ 1 - 1
bsp/nuvoton/numaker-hmi-ma35d1/.config

@@ -605,7 +605,7 @@ CONFIG_RT_USING_UTESTCASES=y
 #
 # Utest Self Testcase
 #
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 # end of Utest Self Testcase
 
 #

+ 1 - 1
bsp/nuvoton/numaker-hmi-ma35d1/rtconfig.h

@@ -378,7 +378,7 @@
 
 /* Utest Self Testcase */
 
-#define UTEST_SELF_PASS_TC
+#define RT_UTEST_SELF_PASS
 /* end of Utest Self Testcase */
 
 /* Kernel Testcase */

+ 1 - 1
bsp/nuvoton/numaker-iot-ma35d1/.config

@@ -606,7 +606,7 @@ CONFIG_RT_USING_UTESTCASES=y
 #
 # Utest Self Testcase
 #
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 # end of Utest Self Testcase
 
 #

+ 1 - 1
bsp/nuvoton/numaker-iot-ma35d1/rtconfig.h

@@ -379,7 +379,7 @@
 
 /* Utest Self Testcase */
 
-#define UTEST_SELF_PASS_TC
+#define RT_UTEST_SELF_PASS
 /* end of Utest Self Testcase */
 
 /* Kernel Testcase */

+ 1 - 1
bsp/nuvoton/numaker-m032ki/.config

@@ -407,7 +407,7 @@ CONFIG_RT_USING_UTESTCASES=y
 #
 # Utest Self Testcase
 #
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 # end of Utest Self Testcase
 
 #

+ 1 - 1
bsp/nuvoton/numaker-m032ki/config_lvgl

@@ -234,7 +234,7 @@ CONFIG_RT_USING_UTESTCASES=y
 #
 # Utest Self Testcase
 #
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 
 #
 # Kernel Testcase

+ 1 - 1
bsp/nuvoton/numaker-m032ki/rtconfig.h

@@ -223,7 +223,7 @@
 
 /* Utest Self Testcase */
 
-#define UTEST_SELF_PASS_TC
+#define RT_UTEST_SELF_PASS
 /* end of Utest Self Testcase */
 
 /* Kernel Testcase */

+ 1 - 1
components/utilities/utest/utest/Kconfig

@@ -1,6 +1,6 @@
 menu "Utest Self Testcase"
 
-config UTEST_SELF_PASS_TC
+config RT_UTEST_SELF_PASS
     bool "UTEST Self-test"
     select RT_USING_UTEST
     default n

+ 1 - 1
components/utilities/utest/utest/SConscript

@@ -2,7 +2,7 @@ from building import *
 
 src = []
 
-if GetDepend('UTEST_SELF_PASS_TC'):
+if GetDepend('RT_UTEST_SELF_PASS'):
     src += Glob('TC_*.c')
 
 group = DefineGroup('utc_UTest', src, depend = [''])

+ 1 - 1
examples/utest/configs/default.cfg

@@ -2,6 +2,6 @@
 CONFIG_RT_CONSOLEBUF_SIZE=1024
 CONFIG_RT_USING_CI_ACTION=y
 
-CONFIG_UTEST_SELF_PASS_TC=y
+CONFIG_RT_UTEST_SELF_PASS=y
 CONFIG_UTEST_MEMHEAP_TC=y
 CONFIG_UTEST_SMALL_MEM_TC=y