2019-02-14 15:28:46 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config TESTING_SCANFTEST
|
|
|
|
tristate "sscanf() test"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable sscanf() test
|
|
|
|
|
2019-02-14 22:53:24 +01:00
|
|
|
For all tests to be successful, you need to enable
|
|
|
|
CONFIG_LIBC_FLOATINGPOINT, CONFIG_LIBC_LONG_LONG and
|
|
|
|
CONFIG_LIBC_SCANSET in addition.
|
|
|
|
|
2019-02-14 15:28:46 +01:00
|
|
|
if TESTING_SCANFTEST
|
|
|
|
|
|
|
|
config TESTING_SCANFTEST_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "scanftest"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2019-02-14 15:28:46 +01:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config TESTING_SCANFTEST_PRIORITY
|
|
|
|
int "Scanftest task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config TESTING_SCANFTEST_STACKSIZE
|
|
|
|
int "Scanftest stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2019-02-14 15:28:46 +01:00
|
|
|
|
|
|
|
endif
|