Lines Matching refs:KUnit
7 This page contains an overview of the kunit_tool and KUnit framework,
9 and covers common problems users face when using KUnit for the first time.
13 KUnit has the same dependencies as the Linux kernel. As long as you can
14 build the kernel, you can run KUnit.
46 Configuring KUnit Kernel ...
47 Building KUnit Kernel ...
48 Starting KUnit Kernel ...
54 the ``Building KUnit Kernel`` step may take a while.
71 A good starting point for the ``.kunitconfig`` is the KUnit default config.
148 Running Tests without the KUnit Wrapper
150 If you do not want to use the KUnit Wrapper (for example: you want code
152 unsupported architecture or configuration), KUnit can be included in
157 Enabling KUnit disables Kernel Address-Space Layout Randomization
163 To enable KUnit itself, you need to enable the ``CONFIG_KUNIT`` Kconfig
165 ``menuconfig``). From there, you can enable any KUnit tests. They
168 KUnit and KUnit tests can be compiled as modules. The tests in a module
171 Running Tests (without KUnit Wrapper)
174 out in the TAP format. This will only happen by default if KUnit/tests
297 Congrats! You just wrote your first KUnit test.
308 For more information on writing KUnit tests (including some common techniques