Skip to content

Commit 50897c9

Browse files
committed
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
2 parents c1fa0bb + 8f80b5b commit 50897c9

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lib/kunit/Kconfig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ menuconfig KUNIT
1616
if KUNIT
1717

1818
config KUNIT_DEBUGFS
19-
bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation" if !KUNIT_ALL_TESTS
20-
default KUNIT_ALL_TESTS
19+
bool "KUnit - Enable /sys/kernel/debug/kunit debugfs representation"
20+
depends on DEBUG_FS
21+
default y
2122
help
2223
Enable debugfs representation for kunit. Currently this consists
2324
of /sys/kernel/debug/kunit/<test_suite>/results files for each

0 commit comments

Comments
 (0)