nuttx-apps/testing/mm/kasantest/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
602 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_KASAN
tristate "KASan validity test"
depends on MM_KASAN
default n
---help---
Enable the KASan validity test
if TESTING_KASAN
config TESTING_KASAN_PRIORITY
int "KASan test priority"
default 101
config TESTING_KASAN_STACKSIZE
int "KASan test stack size"
default 8192
config TESTING_KASAN_PERF_HEAP_SIZE
int "KASan test heap size"
default 1024000
config TESTING_KASAN_PERF_CYCLES
int "KASan test performance cycles"
default 4096
endif