diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-05-12 01:38:49 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-05-12 01:38:49 +0300 |
| commit | 50897c955902c93ae71c38698abb910525ebdc89 (patch) | |
| tree | 635dfb8e1e9d4d75855cc23eb28d35533f55b42f | |
| parent | c1fa0bb633e4a6b11e83ffc57fa5abe8ebb87891 (diff) | |
| parent | 8f80b5b227ef9ea422080487715c841856339aed (diff) | |
| download | linux-50897c955902c93ae71c38698abb910525ebdc89.tar.xz | |
Merge tag 'linux_kselftest-kunit-fixes-7.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull kunit fixes from Shuah Khan:
"Fix to decouple KUNIT_DEBUGFS and KUNIT_ALL_TESTS options and fix
KUNIT_DEBUGFS dependencies so it depends on DEBUG_FS without which it
will not be useful"
* tag 'linux_kselftest-kunit-fixes-7.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS
kunit: config: Enable KUNIT_DEBUGFS by default
| -rw-r--r-- | lib/kunit/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/kunit/Kconfig b/lib/kunit/Kconfig index 498cc51e493d..94ff8e4089bf 100644 --- a/lib/kunit/Kconfig +++ b/lib/kunit/Kconfig @@ -16,8 +16,9 @@ menuconfig KUNIT if KUNIT config KUNIT_DEBUGFS - bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation" if !KUNIT_ALL_TESTS - default KUNIT_ALL_TESTS + bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation" + depends on DEBUG_FS + default y help Enable debugfs representation for kunit. Currently this consists of /sys/kernel/debug/kunit/<test_suite>/results files for each |
