Lines Matching full:run
4 Run Tests without kunit_tool
8 with other systems, or run tests on real hardware), we can
18 KUnit tests can run without kunit_tool. This can be useful, if:
21 - Need to run on real hardware (or using an emulator/VM kunit_tool
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
75 Run Tests After Kernel Has Booted
78 You can use the debugfs filesystem to trigger built-in tests to run after
79 boot. To run the test suite, you can use the following command to write to
80 the ``/sys/kernel/debug/kunit/<test_suite>/run`` file:
84 echo "any string" > /sys/kernel/debugfs/kunit/<test_suite>/run
94 Also, you cannot use this feature to run tests concurrently. Instead a test
95 will wait to run until other tests have completed or failed.