Lines Matching refs:run

8 teaching how to run existing tests and then how to write a simple test case,
14 build the kernel, you can run KUnit.
20 can run kunit_tool:
24 ./tools/testing/kunit/kunit.py run
28 "The source tree is not clean, please run 'make ARCH=um mrproper'"
59 Selecting which tests to run
64 you can select which tests to run by:
67 - `Filtering tests by name`_ to select specifically which compiled tests to run.
72 If you didn't run ``kunit.py run`` yet, you can generate it by running:
91 options required to run the desired tests, including their dependencies.
94 If you need to run on an architecture other than UML see :ref:`kunit-on-qemu`.
97 For example, to include the kernel's linked-list test you can run::
99 ./tools/testing/kunit/kunit.py run \
103 For example, to run only ``FAT_FS`` and ``EXT4`` tests you can run::
105 ./tools/testing/kunit/kunit.py run \
133 to run every test case it contains::
135 ./tools/testing/kunit/kunit.py run "kunit_executor_test"
138 like ``"example.example_simple_test"``, to run specifically that test case::
140 ./tools/testing/kunit/kunit.py run "example.example_simple_test"
142 c. use wildcard characters (``*?[``) to run any test case that matches the pattern,
143 like ``"*.*64*"`` to run test cases containing ``"64"`` in the name inside
146 ./tools/testing/kunit/kunit.py run "*.*64*"
169 will run when the module is loaded.
173 Build and run your kernel. In the kernel log, the test output is printed
284 ./tools/testing/kunit/kunit.py run
305 If you'd like to run tests without using kunit.py, check out