test framework

This commit is contained in:
wuzheng
2022-11-09 20:45:44 +08:00
parent d3836f1a6f
commit b8cf052d49
9 changed files with 73 additions and 12 deletions

View File

@@ -25,8 +25,8 @@ ifeq ($(CONFIG_ADD_XIZI_FETURES),y)
SRC_FILES += test_dac.c
endif
ifeq ($(CONFIG_USER_TEST_SD),y)
SRC_FILES += test_softspi_sd.c
ifeq ($(CONFIG_USER_TEST_FS),y)
SRC_FILES += test_fs.c
endif
ifeq ($(CONFIG_USER_TEST_SEMC),y)
@@ -37,5 +37,13 @@ ifeq ($(CONFIG_ADD_XIZI_FETURES),y)
SRC_FILES +=
endif
ifeq ($(CONFIG_USER_TEST_I2C),y)
SRC_FILES += test_i2c.c
endif
ifeq ($(CONFIG_USER_TEST_GPIO),y)
SRC_FILES += test_gpio.c
endif
include $(KERNEL_ROOT)/compiler.mk
endif