nuttx-apps/testing/cmocka/Kconfig
yintao 3fbb452b4a cmocka:Add automated testing framework cmocka in testing
Signed-off-by: yintao <yintao@xiaomi.com>
2022-12-22 00:58:51 +08:00

30 lines
627 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_CMOCKA
tristate "Enable libcmocka"
default n
---help---
Enable libcmocka and run all testcases
if TESTING_CMOCKA
config TESTING_CMOCKA_PROGNAME
string "Program name"
default "cmocka"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_CMOCKA_PRIORITY
int "cmocka test task priority"
default 100
config TESTING_CMOCKA_STACKSIZE
int "cmocka test stack size"
default DEFAULT_TASK_STACKSIZE
endif