OSHW-DEIMOS/SOFTWARE/A64-TERES/linux-a64/tools/testing/selftests
Dimitar Gamishev f9b0e7a283 linux
2017-10-13 14:07:04 +03:00
..
breakpoints linux 2017-10-13 14:07:04 +03:00
cpu-hotplug linux 2017-10-13 14:07:04 +03:00
efivarfs linux 2017-10-13 14:07:04 +03:00
ipc linux 2017-10-13 14:07:04 +03:00
kcmp linux 2017-10-13 14:07:04 +03:00
memory-hotplug linux 2017-10-13 14:07:04 +03:00
mount linux 2017-10-13 14:07:04 +03:00
mqueue linux 2017-10-13 14:07:04 +03:00
net linux 2017-10-13 14:07:04 +03:00
ptrace linux 2017-10-13 14:07:04 +03:00
vm linux 2017-10-13 14:07:04 +03:00
Makefile linux 2017-10-13 14:07:04 +03:00
README.txt linux 2017-10-13 14:07:04 +03:00

Linux Kernel Selftests

The kernel contains a set of "self tests" under the tools/testing/selftests/
directory. These are intended to be small unit tests to exercise individual
code paths in the kernel.

Running the selftests
=====================

To build the tests:

  $ make -C tools/testing/selftests


To run the tests:

  $ make -C tools/testing/selftests run_tests

- note that some tests will require root privileges.


To run only tests targetted for a single subsystem:

  $  make -C tools/testing/selftests TARGETS=cpu-hotplug run_tests

See the top-level tools/testing/selftests/Makefile for the list of all possible
targets.


Contributing new tests
======================

In general, the rules for for selftests are

 * Do as much as you can if you're not root;

 * Don't take too long;

 * Don't break the build on any architecture, and

 * Don't cause the top-level "make run_tests" to fail if your feature is
   unconfigured.