2017-05-26 20:44:00 +02:00
|
|
|
|
======================
|
2013-02-28 02:05:57 +01:00
|
|
|
|
Linux Kernel Selftests
|
2017-05-26 20:44:00 +02:00
|
|
|
|
======================
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
|
|
|
|
The kernel contains a set of "self tests" under the tools/testing/selftests/
|
2016-08-18 11:36:53 +02:00
|
|
|
|
directory. These are intended to be small tests to exercise individual code
|
|
|
|
|
paths in the kernel. Tests are intended to be run after building, installing
|
|
|
|
|
and booting a kernel.
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2014-07-02 17:51:38 +02:00
|
|
|
|
On some systems, hot-plug tests could hang forever waiting for cpu and
|
|
|
|
|
memory to be ready to be offlined. A special hot-plug target is created
|
|
|
|
|
to run full range of hot-plug tests. In default mode, hot-plug tests run
|
|
|
|
|
in safe mode with a limited scope. In limited mode, cpu-hotplug test is
|
|
|
|
|
run on a single cpu as opposed to all hotplug capable cpus, and memory
|
|
|
|
|
hotplug test is run on 2% of hotplug capable memory instead of 10%.
|
|
|
|
|
|
|
|
|
|
Running the selftests (hotplug tests are run in limited mode)
|
|
|
|
|
=============================================================
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
To build the tests::
|
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make -C tools/testing/selftests
|
2017-05-26 20:44:00 +02:00
|
|
|
|
|
|
|
|
|
To run the tests::
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make -C tools/testing/selftests run_tests
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
To build and run the tests with a single command, use::
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make kselftest
|
2014-11-20 01:16:16 +01:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
Note that some tests will require root privileges.
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
|
|
|
|
|
2014-11-20 01:16:16 +01:00
|
|
|
|
Running a subset of selftests
|
2017-05-26 20:44:00 +02:00
|
|
|
|
=============================
|
|
|
|
|
|
2014-11-20 01:16:16 +01:00
|
|
|
|
You can use the "TARGETS" variable on the make command line to specify
|
|
|
|
|
single test to run, or a list of tests to run.
|
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
To run only tests targeted for a single subsystem::
|
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make -C tools/testing/selftests TARGETS=ptrace run_tests
|
2014-11-20 01:16:16 +01:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
You can specify multiple tests to build and run::
|
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make TARGETS="size timers" kselftest
|
2014-11-20 01:16:16 +01:00
|
|
|
|
|
|
|
|
|
See the top-level tools/testing/selftests/Makefile for the list of all
|
|
|
|
|
possible targets.
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
|
|
|
|
|
2014-07-02 17:51:38 +02:00
|
|
|
|
Running the full range hotplug selftests
|
|
|
|
|
========================================
|
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
To build the hotplug tests::
|
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make -C tools/testing/selftests hotplug
|
2017-05-26 20:44:00 +02:00
|
|
|
|
|
|
|
|
|
To run the hotplug tests::
|
2014-07-02 17:51:38 +02:00
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ make -C tools/testing/selftests run_hotplug
|
2014-07-02 17:51:38 +02:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
Note that some tests will require root privileges.
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
2014-11-20 01:16:16 +01:00
|
|
|
|
|
2015-09-23 11:35:25 +02:00
|
|
|
|
Install selftests
|
|
|
|
|
=================
|
|
|
|
|
|
|
|
|
|
You can use kselftest_install.sh tool installs selftests in default
|
2017-02-27 23:28:47 +01:00
|
|
|
|
location which is tools/testing/selftests/kselftest or a user specified
|
2015-09-23 11:35:25 +02:00
|
|
|
|
location.
|
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
To install selftests in default location::
|
2015-09-23 11:35:25 +02:00
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ cd tools/testing/selftests
|
|
|
|
|
$ ./kselftest_install.sh
|
2017-05-26 20:44:00 +02:00
|
|
|
|
|
|
|
|
|
To install selftests in a user specified location::
|
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ cd tools/testing/selftests
|
|
|
|
|
$ ./kselftest_install.sh install_dir
|
2015-09-23 11:35:25 +02:00
|
|
|
|
|
2016-11-07 21:24:14 +01:00
|
|
|
|
Running installed selftests
|
|
|
|
|
===========================
|
|
|
|
|
|
|
|
|
|
Kselftest install as well as the Kselftest tarball provide a script
|
|
|
|
|
named "run_kselftest.sh" to run the tests.
|
|
|
|
|
|
|
|
|
|
You can simply do the following to run the installed Kselftests. Please
|
2017-06-17 17:26:40 +02:00
|
|
|
|
note some tests will require root privileges::
|
2016-11-07 21:24:14 +01:00
|
|
|
|
|
2017-06-17 17:26:40 +02:00
|
|
|
|
$ cd kselftest
|
|
|
|
|
$ ./run_kselftest.sh
|
2015-09-23 11:35:25 +02:00
|
|
|
|
|
2013-02-28 02:05:57 +01:00
|
|
|
|
Contributing new tests
|
|
|
|
|
======================
|
|
|
|
|
|
2016-02-23 17:08:11 +01:00
|
|
|
|
In general, the rules for selftests are
|
2013-02-28 02:05:57 +01:00
|
|
|
|
|
|
|
|
|
* 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.
|
2016-11-29 12:55:47 +01:00
|
|
|
|
|
2017-05-26 20:44:00 +02:00
|
|
|
|
Contributing new tests (details)
|
|
|
|
|
================================
|
2016-11-29 12:55:47 +01:00
|
|
|
|
|
|
|
|
|
* Use TEST_GEN_XXX if such binaries or files are generated during
|
|
|
|
|
compiling.
|
2017-06-17 17:26:40 +02:00
|
|
|
|
|
2016-11-29 12:55:47 +01:00
|
|
|
|
TEST_PROGS, TEST_GEN_PROGS mean it is the excutable tested by
|
|
|
|
|
default.
|
2017-06-17 17:26:40 +02:00
|
|
|
|
|
2016-11-29 12:55:47 +01:00
|
|
|
|
TEST_PROGS_EXTENDED, TEST_GEN_PROGS_EXTENDED mean it is the
|
|
|
|
|
executable which is not tested by default.
|
|
|
|
|
TEST_FILES, TEST_GEN_FILES mean it is the file which is used by
|
|
|
|
|
test.
|
2017-06-05 20:37:17 +02:00
|
|
|
|
|
|
|
|
|
Test Harness
|
|
|
|
|
============
|
|
|
|
|
|
|
|
|
|
The kselftest_harness.h file contains useful helpers to build tests. The tests
|
|
|
|
|
from tools/testing/selftests/seccomp/seccomp_bpf.c can be used as example.
|
|
|
|
|
|
|
|
|
|
Example
|
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
|
.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
|
|
|
|
|
:doc: example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Helpers
|
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
|
.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
|
|
|
|
|
:functions: TH_LOG TEST TEST_SIGNAL FIXTURE FIXTURE_DATA FIXTURE_SETUP
|
|
|
|
|
FIXTURE_TEARDOWN TEST_F TEST_HARNESS_MAIN
|
|
|
|
|
|
|
|
|
|
Operators
|
|
|
|
|
---------
|
|
|
|
|
|
|
|
|
|
.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
|
|
|
|
|
:doc: operators
|
|
|
|
|
|
|
|
|
|
.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
|
|
|
|
|
:functions: ASSERT_EQ ASSERT_NE ASSERT_LT ASSERT_LE ASSERT_GT ASSERT_GE
|
|
|
|
|
ASSERT_NULL ASSERT_TRUE ASSERT_NULL ASSERT_TRUE ASSERT_FALSE
|
|
|
|
|
ASSERT_STREQ ASSERT_STRNE EXPECT_EQ EXPECT_NE EXPECT_LT
|
|
|
|
|
EXPECT_LE EXPECT_GT EXPECT_GE EXPECT_NULL EXPECT_TRUE
|
|
|
|
|
EXPECT_FALSE EXPECT_STREQ EXPECT_STRNE
|