nuttx-apps/testing/drivertest/Kconfig
liugui 9353bcefa2 skip oneshot timer test
Signed-off-by: liugui <liugui@xiaomi.com>
Signed-off-by: buxiasen <buxiasen@xiaomi.com>
2024-10-28 22:51:12 +08:00

31 lines
651 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_DRIVER_TEST
tristate "vela cmocka driver test"
default n
depends on TESTING_CMOCKA
---help---
Enable the cmocka driver test
if TESTING_DRIVER_TEST
config TESTING_DRIVER_TEST_PRIORITY
int "Task priority"
default 100
config TESTING_DRIVER_TEST_STACKSIZE
int "Stack size"
default DEFAULT_TASK_STACKSIZE
config TESTING_DRIVER_TEST_SIMPLE
bool "Enable cmocka driver simple test"
default n
config TESTING_ONESHOT_TEST
bool "Enable cmocka oneshot test"
default n
depends on ONESHOT
endif