Lines Matching +full:in +full:- +full:built
1 .. SPDX-License-Identifier: GPL-2.0
9 include KUnit in any kernel, read out results, and parse manually.
11 .. note:: KUnit is not designed for use in a production system. It is
20 - We have an existing kernel configuration to test.
21 - Need to run on real hardware (or using an emulator/VM kunit_tool
23 - Wish to integrate with some existing testing systems.
26 tests can also be built by enabling their config options in our
28 ending in ``_KUNIT_TEST``. Most tests can either be built as a module,
29 or be built into the kernel.
38 Once we have built our kernel (and/or modules), it is simple to run
39 the tests. If the tests are built-in, they will run automatically on the
41 in TAP format.
43 If the tests are built as modules, they will run when the module is
46 .. code-block :: bash
48 # modprobe example-test
50 The results will appear in TAP format in ``dmesg``.
66 accessible from the debugfs filesystem in the following read-only file:
68 .. code-block :: bash
72 The test results are printed in a KTAP document. Note this document is separate
78 You can use the debugfs filesystem to trigger built-in tests to run after
82 .. code-block :: bash