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
44 Once we have built our kernel (and/or modules), it is simple to run
45 the tests. If the tests are built-in, they will run automatically on the
49 If the tests are built as modules, they will run when the module is
81 Run Tests After Kernel Has Booted
84 You can use the debugfs filesystem to trigger built-in tests to run after
85 boot. To run the test suite, you can use the following command to write to
86 the ``/sys/kernel/debug/kunit/<test_suite>/run`` file:
90 echo "any string" > /sys/kernel/debugfs/kunit/<test_suite>/run
100 Also, you cannot use this feature to run tests concurrently. Instead a test
101 will wait to run until other tests have completed or failed.