Documentation/dev-tools/kunit/faq.rst
.. SPDX-License-Identifier: GPL-2.0
KUnit is a unit testing framework. Autotest, kselftest (and some others) are not.
A unit test <https://martinfowler.com/bliki/UnitTest.html>_ is supposed to
test a single unit of code in isolation and hence the name unit test. A unit
test should be the finest granularity of testing and should allow all possible
code paths to be tested in the code under test. This is only possible if the
code under test is small and does not have any external dependencies outside of
the test's control like hardware.
There are no testing frameworks currently available for the kernel that do not require installing the kernel on a test machine or in a virtual machine. All testing frameworks require tests to be written in userspace and run on the kernel under test. This is true for Autotest, kselftest, and some others, disqualifying any of them from being considered unit testing frameworks.
Yes, mostly.
For the most part, the KUnit core framework (what we use to write the tests)
can compile to any architecture. It compiles like just another part of the
kernel and runs when the kernel boots, or when built as a module, when the
module is loaded. However, there is infrastructure, like the KUnit Wrapper
(tools/testing/kunit/kunit.py) that might not support some architectures
(see :ref:kunit-on-qemu).
In short, yes, you can run KUnit on other architectures, but it might require more work than using KUnit on UML.
For more information, see :ref:kunit-on-non-uml.
.. _kinds-of-tests:
Most existing tests for the Linux kernel would be categorized as an integration test, or an end-to-end test.
Unfortunately, there are a number of things which can break, but here are some things to try.
./tools/testing/kunit/kunit.py run with the --raw_output
parameter. This might show details or error messages hidden by the kunit_tool
parser.kunit.py run, try running kunit.py config,
kunit.py build, and kunit.py exec independently. This can help track
down where an issue is occurring. (If you think the parser is at fault, you
can run it manually against stdin or a file with kunit.py parse.)kunit_tool ignores. This should be as simple as running ./vmlinux
after building the UML kernel (for example, by using kunit.py build).
Note that UML has some unusual requirements (such as the host having a tmpfs
filesystem mounted), and has had issues in the past when built statically and
the host has KASLR enabled. (On older host kernels, you may need to run
setarch `uname -m` -R ./vmlinux to disable KASLR.)CONFIG_KUNIT=y and at least one test
(e.g. CONFIG_KUNIT_EXAMPLE_TEST=y). kunit_tool will keep its .config
around, so you can see what config was used after running kunit.py run.
It also preserves any config changes you might make, so you can
enable/disable things with make ARCH=um menuconfig or similar, and then
re-run kunit_tool.make ARCH=um defconfig before running kunit.py run. This
may help clean up any residual config items which could be causing problems./sys/kernel/debug/kunit/<test suite>/results, and
can be parsed with kunit.py parse. For more details, see :ref:kunit-on-qemu.If none of the above tricks help, you are always welcome to email any issues to [email protected].