# SPDX-License-Identifier: GPL-2.0-only
#
# KLINUX Unit Test Framework configuration
#

menuconfig KLINUX_UNIT_TEST
	bool "KLINUX Driver Unit Test Framework"
	depends on PROC_FS
	help
	  This option enables the KLINUX driver unit test framework.
	  The framework provides a unified interface for testing kernel drivers
	  through /proc/klinux_tests.

	  Say Y here if you want to enable driver unit testing support.

	  If unsure, say N.

if KLINUX_UNIT_TEST

config KLINUX_UNIT_TEST_DEBUG
	bool "Enable debug output for unit tests"
	default n
	help
	  This option enables additional debug output for the unit test
	  framework. This can be useful for debugging test failures.

	  If unsure, say N.

endif # KLINUX_UNIT_TEST

