WIP FPC-III support
[linux/fpc-iii.git] / Documentation / dev-tools / kunit / kunit-tool.rst
blob29ae2fee8123be5aba063e7b60bf82c78532bdc4
1 .. SPDX-License-Identifier: GPL-2.0
3 =================
4 kunit_tool How-To
5 =================
7 What is kunit_tool?
8 ===================
10 kunit_tool is a script (``tools/testing/kunit/kunit.py``) that aids in building
11 the Linux kernel as UML (`User Mode Linux
12 <http://user-mode-linux.sourceforge.net/>`_), running KUnit tests, parsing
13 the test results and displaying them in a user friendly manner.
15 kunit_tool addresses the problem of being able to run tests without needing a
16 virtual machine or actual hardware with User Mode Linux. User Mode Linux is a
17 Linux architecture, like ARM or x86; however, unlike other architectures it
18 compiles the kernel as a standalone Linux executable that can be run like any
19 other program directly inside of a host operating system. To be clear, it does
20 not require any virtualization support: it is just a regular program.
22 What is a .kunitconfig?
23 =======================
25 It's just a defconfig that kunit_tool looks for in the base directory.
26 kunit_tool uses it to generate a .config as you might expect. In addition, it
27 verifies that the generated .config contains the CONFIG options in the
28 .kunitconfig; the reason it does this is so that it is easy to be sure that a
29 CONFIG that enables a test actually ends up in the .config.
31 How do I use kunit_tool?
32 ========================
34 If a kunitconfig is present at the root directory, all you have to do is:
36 .. code-block:: bash
38         ./tools/testing/kunit/kunit.py run
40 However, you most likely want to use it with the following options:
42 .. code-block:: bash
44         ./tools/testing/kunit/kunit.py run --timeout=30 --jobs=`nproc --all`
46 - ``--timeout`` sets a maximum amount of time to allow tests to run.
47 - ``--jobs`` sets the number of threads to use to build the kernel.
49 .. note::
50         This command will work even without a .kunitconfig file: if no
51         .kunitconfig is present, a default one will be used instead.
53 For a list of all the flags supported by kunit_tool, you can run:
55 .. code-block:: bash
57         ./tools/testing/kunit/kunit.py run --help