Frequently Asked Questions¶
How is this different from Autotest, kselftest, etc?¶
KUnit is a unit testing framework. Autotest, kselftest (and some others) arenot.
Aunit test is supposed totest a single unit of code in isolation, hence the name. A unit test should bethe finest granularity of testing and as such should allow all possible codepaths to be tested in the code under test; this is only possible if the codeunder test is very small and does not have any external dependencies outside ofthe test’s control like hardware.
There are no testing frameworks currently available for the kernel that do notrequire installing the kernel on a test machine or in a VM and all requiretests to be written in userspace and run on the kernel under test; this is truefor Autotest, kselftest, and some others, disqualifying any of them from beingconsidered unit testing frameworks.
Does KUnit support running on architectures other than UML?¶
Yes, well, mostly.
For the most part, the KUnit core framework (what you use to write the tests)can compile to any architecture; it compiles like just another part of thekernel and runs when the kernel boots, or when built as a module, when themodule is loaded. However, there is some infrastructure,like the KUnit Wrapper (tools/testing/kunit/kunit.py) that does not supportother architectures.
In short, this means that, yes, you can run KUnit on other architectures, butit might require more work than using KUnit on UML.
For more information, seeKUnit on non-UML architectures.
What is the difference between a unit test and these other kinds of tests?¶
Most existing tests for the Linux kernel would be categorized as an integrationtest, or an end-to-end test.
- A unit test is supposed to test a single unit of code in isolation, hence thename. A unit test should be the finest granularity of testing and as suchshould allow all possible code paths to be tested in the code under test; thisis only possible if the code under test is very small and does not have anyexternal dependencies outside of the test’s control like hardware.
- An integration test tests the interaction between a minimal set of components,usually just two or three. For example, someone might write an integrationtest to test the interaction between a driver and a piece of hardware, or totest the interaction between the userspace libraries the kernel provides andthe kernel itself; however, one of these tests would probably not test theentire kernel along with hardware interactions and interactions with theuserspace.
- An end-to-end test usually tests the entire system from the perspective of thecode under test. For example, someone might write an end-to-end test for thekernel by installing a production configuration of the kernel on productionhardware with a production userspace and then trying to exercise some behaviorthat depends on interactions between the hardware, the kernel, and userspace.
KUnit isn’t working, what should I do?¶
Unfortunately, there are a number of things which can break, but here are somethings to try.
- Try running
./tools/testing/kunit/kunit.pyrunwith the--raw_outputparameter. This might show details or error messages hidden by the kunit_toolparser. - Instead of running
kunit.pyrun, try runningkunit.pyconfig,kunit.pybuild, andkunit.pyexecindependently. This can help trackdown where an issue is occurring. (If you think the parser is at fault, youcan run it manually against stdin or a file withkunit.pyparse.) - Running the UML kernel directly can often reveal issues or error messageskunit_tool ignores. This should be as simple as running
./vmlinuxafterbuilding the UML kernel (e.g., by usingkunit.pybuild). Note that UMLhas some unusual requirements (such as the host having a tmpfs filesystemmounted), and has had issues in the past when built statically and the hosthas KASLR enabled. (On older host kernels, you may need to runsetarch`uname-m`-R./vmlinuxto disable KASLR.) - Make sure the kernel .config has
CONFIG_KUNIT=yand at least one test(e.g.CONFIG_KUNIT_EXAMPLE_TEST=y). kunit_tool will keep its .configaround, so you can see what config was used after runningkunit.pyrun.It also preserves any config changes you might make, so you canenable/disable things withmakeARCH=ummenuconfigor similar, and thenre-run kunit_tool. - Try to run
makeARCH=umdefconfigbefore runningkunit.pyrun. Thismay help clean up any residual config items which could be causing problems. - Finally, try running KUnit outside UML. KUnit and KUnit tests can run bebuilt into any kernel, or can be built as a module and loaded at runtime.Doing so should allow you to determine if UML is causing the issue you’reseeing. When tests are built-in, they will execute when the kernel boots, andmodules will automatically execute associated tests when loaded. Test resultscan be collected from
/sys/kernel/debug/kunit/<testsuite>/results, andcan be parsed withkunit.pyparse. For more details, see “KUnit onnon-UML architectures” inUsing KUnit.
If none of the above tricks help, you are always welcome to email any issues tokunit-dev@googlegroups.com.