#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config TESTING_CACHETEST
	tristate "Cache Test"
	default n
	---help---
		Enable a simple Cache test.

if TESTING_CACHETEST

config TESTING_CACHETEST_PROGNAME
	string "Program name"
	default "cachetest"
	---help---
		This is the name of the program that will be used when the NSH ELF
		program is installed.

config TESTING_CACHETEST_PRIORITY
	int "Cache test task priority"
	default 100

config TESTING_CACHETEST_STACKSIZE
	int "Cache test stack size"
	default DEFAULT_TASK_STACKSIZE

endif
