Lines Matching full:tests
8 teaching how to run existing tests and then how to write a simple test case,
16 Running tests with kunit_tool
19 tests, and formats the test results. From the kernel repository, you
50 The tests will pass or fail.
59 Selecting which tests to run
62 By default, kunit_tool runs all tests reachable with minimal configuration,
64 you can select which tests to run by:
67 - `Filtering tests by name`_ to select specifically which compiled tests to run.
84 Before running the tests, kunit_tool ensures that all config options
91 options required to run the desired tests, including their dependencies.
93 it will enable a number of additional tests that you may not want.
103 For example, to run only ``FAT_FS`` and ``EXT4`` tests you can run::
122 Filtering tests by name
125 to select which tests to execute at boot-time by passing a glob filter
148 Running Tests without the KUnit Wrapper
158 (KASLR), and tests may affect the state of the kernel in ways not
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
305 If you'd like to run tests without using kunit.py, check out
308 For more information on writing KUnit tests (including some common techniques