2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
2020-01-30 17:07:00 +01:00
|
|
|
config TESTING_MM
|
|
|
|
tristate "Memory management test"
|
2012-04-13 04:14:09 +02:00
|
|
|
default n
|
|
|
|
---help---
|
2020-01-30 17:07:00 +01:00
|
|
|
Enable the memory management test
|
2012-04-13 04:14:09 +02:00
|
|
|
|
2020-01-30 17:07:00 +01:00
|
|
|
if TESTING_MM
|
2020-01-30 17:43:04 +01:00
|
|
|
|
|
|
|
config TESTING_MM_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "mm"
|
|
|
|
---help---
|
|
|
|
This is the name of the program that will be used when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config TESTING_MM_PRIORITY
|
|
|
|
int "Task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config TESTING_MM_STACKSIZE
|
|
|
|
int "Stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2020-01-30 17:43:04 +01:00
|
|
|
|
2022-11-07 17:07:13 +01:00
|
|
|
config TESTING_MM_POWEROFF
|
|
|
|
bool "Terminate on test completion"
|
|
|
|
default n
|
|
|
|
depends on BOARDCTL_POWEROFF
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|