nuttx-apps/testing/mm/memtester/Kconfig
tengshuangshuang 077c3461db apps/testing:merge case folder to the new mm folder
1.rename original  mm folder to heaptest and move it to mm folder

2.move the following folders into the new mm folder:
  cachetest, heaptest, iob, kasantest, memstress, memtester, ramtest, stressapptest

Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com>
2025-01-23 18:19:06 +08:00

31 lines
666 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config UTILS_MEMTESTER
tristate "utils_memtester"
default n
if UTILS_MEMTESTER
config UTILS_MEMTESTER_PROGNAME
string "Program Name"
default "memtester"
config UTILS_MEMTESTER_STACKSIZE
int "utils memtester stack size"
default DEFAULT_TASK_STACKSIZE
config UTILS_MEMTESTER_PRIORITY
int "Task PRIORITY"
default 90
config UTILS_MEMTESTER_NARROW
bool "TEST_NARROW"
default n
---help---
Turn on the "test_8bit_wide_random test_16bit_wide_random" tests, which
may result in unaligned access on some platforms.
endif