diff --git a/doc/kernel_tests.rst b/doc/kernel_tests.rst index ed02409388f5e6c0f94be1d7725166d2770e7f4a..c54abc91514e3f44171a804e185da694854e1414 100644 --- a/doc/kernel_tests.rst +++ b/doc/kernel_tests.rst @@ -59,6 +59,21 @@ execution of `rt-app `_ workloads. It is very useful for scheduler-related tests, as it makes it easy to create tasks with a pre-determined utilization. +Running tests +============= + +The tests are programmed as straight up Python classes, so you can create +pure Python scripts that call them with the right parameters, or call them +from within a notebook. + +.. TODO:: Link exekall doc here + +Exekall facilitates executing several tests at time. +You can for instance run all possible tests on a given platform like so: + +>>> exekall run lisa/tests/kernel/*/*.py --conf target_conf.yml + + Base API ========