ARM: kirkwood: Remove all remaining trace of DNS-320/325 platform code
[linux-2.6/btrfs-unstable.git] / tools / testing / selftests / README.txt
blob5e2faf9c55d31525ba539ab1f9fad6d59133fdb8
1 Linux Kernel Selftests
3 The kernel contains a set of "self tests" under the tools/testing/selftests/
4 directory. These are intended to be small unit tests to exercise individual
5 code paths in the kernel.
7 Running the selftests
8 =====================
10 To build the tests:
12   $ make -C tools/testing/selftests
15 To run the tests:
17   $ make -C tools/testing/selftests run_tests
19 - note that some tests will require root privileges.
22 To run only tests targetted for a single subsystem:
24   $  make -C tools/testing/selftests TARGETS=cpu-hotplug run_tests
26 See the top-level tools/testing/selftests/Makefile for the list of all possible
27 targets.
30 Contributing new tests
31 ======================
33 In general, the rules for for selftests are
35  * Do as much as you can if you're not root;
37  * Don't take too long;
39  * Don't break the build on any architecture, and
41  * Don't cause the top-level "make run_tests" to fail if your feature is
42    unconfigured.