Lines Matching +full:built +full:- +full:into
1 .. SPDX-License-Identifier: GPL-2.0
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
43 If the tests are built as modules, they will run when the module is
46 .. code-block :: bash
48 # modprobe example-test
66 accessible from the debugfs filesystem in the following read-only file:
68 .. code-block :: bash
78 You can use the debugfs filesystem to trigger built-in tests to run after
82 .. code-block :: bash