add capability interface into kernel

This commit is contained in:
wuzheng
2024-10-15 02:08:44 +00:00
parent 49b20dfa6a
commit 7897a91a8a
7 changed files with 196 additions and 0 deletions
@@ -11,6 +11,10 @@ menuconfig KERNEL_TEST
bool "Config test Circular area"
default n
select KERNEL_CIRCULAR_AREA
config KERNEL_TEST_CAPABILITY
bool "Config test capability"
default n
select KERNEL_AVL_TREE
config KERNEL_TEST_MEM
bool "Config test mem"
default n
@@ -16,6 +16,11 @@ ifeq ($(CONFIG_KERNEL_TEST_MSG),y)
SRC_FILES += test_mq.c
endif
ifeq ($(CONFIG_KERNEL_TEST_CAPABILITY),y)
SRC_FILES += test_capability.c
endif
ifeq ($(CONFIG_KERNEL_TEST_AVLTREE),y)
SRC_FILES += test_avltree.c
endif