kunit: Kconfig: enable a KUNIT_ALL_TESTS fragment
authorAnders Roxell <anders.roxell@linaro.org>
Mon, 11 May 2020 13:14:20 +0000 (15:14 +0200)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 1 Jun 2020 20:19:16 +0000 (14:19 -0600)
Make it easier to enable all KUnit fragments.  This is useful for kernel
devs or testers, so its easy to get all KUnit tests enabled and if new
gets added they will be enabled as well.  Fragments that has to be
builtin will be missed if CONFIG_KUNIT_ALL_TESTS is set as a module.

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
lib/kunit/Kconfig

index 95d12e3..bdeee76 100644 (file)
@@ -41,4 +41,18 @@ config KUNIT_EXAMPLE_TEST
          is intended for curious hackers who would like to understand how to
          use KUnit for kernel development.
 
+config KUNIT_ALL_TESTS
+       tristate "All KUnit tests with satisfied dependencies"
+       help
+         Enables all KUnit tests, if they can be enabled.
+         KUnit tests run during boot and output the results to the debug log
+         in TAP format (http://testanything.org/). Only useful for kernel devs
+         running the KUnit test harness, and not intended for inclusion into a
+         production build.
+
+         For more information on KUnit and unit tests in general please refer
+         to the KUnit documentation in Documentation/dev-tools/kunit/.
+
+         If unsure, say N.
+
 endif # KUNIT