blob: dcefee707ccdc35fbdc800ee18bbf373e2884d19 [file] [log] [blame]
Mickaël Salaüncef04cd2017-05-26 20:44:00 +02001======================
Jeremy Kerr80d03422013-02-27 17:05:57 -08002Linux Kernel Selftests
Mickaël Salaüncef04cd2017-05-26 20:44:00 +02003======================
Jeremy Kerr80d03422013-02-27 17:05:57 -08004
5The kernel contains a set of "self tests" under the tools/testing/selftests/
Aleksander Alekseev3409f9a2016-08-18 12:36:53 +03006directory. These are intended to be small tests to exercise individual code
7paths in the kernel. Tests are intended to be run after building, installing
8and booting a kernel.
Jeremy Kerr80d03422013-02-27 17:05:57 -08009
Shuah Khan9f436192019-04-17 17:34:03 -060010You can find additional information on Kselftest framework, how to
11write new tests using the framework on Kselftest wiki:
12
13https://kselftest.wiki.kernel.org/
14
Shuah Khanddddda92014-07-02 09:51:38 -060015On some systems, hot-plug tests could hang forever waiting for cpu and
16memory to be ready to be offlined. A special hot-plug target is created
Randy Dunlapc284d422018-11-04 14:06:23 -080017to run the full range of hot-plug tests. In default mode, hot-plug tests run
Shuah Khanddddda92014-07-02 09:51:38 -060018in safe mode with a limited scope. In limited mode, cpu-hotplug test is
19run on a single cpu as opposed to all hotplug capable cpus, and memory
20hotplug test is run on 2% of hotplug capable memory instead of 10%.
21
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +110022kselftest runs as a userspace process. Tests that can be written/run in
23userspace may wish to use the `Test Harness`_. Tests that need to be
24run in kernel space may wish to use a `Test Module`_.
25
Shuah Khanddddda92014-07-02 09:51:38 -060026Running the selftests (hotplug tests are run in limited mode)
27=============================================================
Jeremy Kerr80d03422013-02-27 17:05:57 -080028
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020029To build the tests::
Jeremy Kerr80d03422013-02-27 17:05:57 -080030
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -030031 $ make -C tools/testing/selftests
Jeremy Kerr80d03422013-02-27 17:05:57 -080032
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020033To run the tests::
Jeremy Kerr80d03422013-02-27 17:05:57 -080034
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -030035 $ make -C tools/testing/selftests run_tests
Tim Bird3c415702014-11-19 16:16:16 -080036
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020037To build and run the tests with a single command, use::
38
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -030039 $ make kselftest
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020040
41Note that some tests will require root privileges.
Jeremy Kerr80d03422013-02-27 17:05:57 -080042
Shuah Khan9f436192019-04-17 17:34:03 -060043Kselftest supports saving output files in a separate directory and then
44running tests. To locate output files in a separate directory two syntaxes
45are supported. In both cases the working directory must be the root of the
46kernel src. This is applicable to "Running a subset of selftests" section
47below.
48
49To build, save output files in a separate directory with O= ::
Shuah Khand5cdbb82017-10-02 17:44:17 -060050
51 $ make O=/tmp/kselftest kselftest
52
Shuah Khan9f436192019-04-17 17:34:03 -060053To build, save output files in a separate directory with KBUILD_OUTPUT ::
Shuah Khand5cdbb82017-10-02 17:44:17 -060054
Shuah Khan9f436192019-04-17 17:34:03 -060055 $ export KBUILD_OUTPUT=/tmp/kselftest; make kselftest
Shuah Khand5cdbb82017-10-02 17:44:17 -060056
Shuah Khan9f436192019-04-17 17:34:03 -060057The O= assignment takes precedence over the KBUILD_OUTPUT environment
58variable.
59
60The above commands by default run the tests and print full pass/fail report.
61Kselftest supports "summary" option to make it easier to understand the test
62results. Please find the detailed individual test results for each test in
63/tmp/testname file(s) when summary option is specified. This is applicable
64to "Running a subset of selftests" section below.
65
66To run kselftest with summary option enabled ::
67
68 $ make summary=1 kselftest
Jeremy Kerr80d03422013-02-27 17:05:57 -080069
Tim Bird3c415702014-11-19 16:16:16 -080070Running a subset of selftests
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020071=============================
72
Tim Bird3c415702014-11-19 16:16:16 -080073You can use the "TARGETS" variable on the make command line to specify
74single test to run, or a list of tests to run.
Jeremy Kerr80d03422013-02-27 17:05:57 -080075
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020076To run only tests targeted for a single subsystem::
Tim Bird3c415702014-11-19 16:16:16 -080077
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -030078 $ make -C tools/testing/selftests TARGETS=ptrace run_tests
Mickaël Salaüncef04cd2017-05-26 20:44:00 +020079
80You can specify multiple tests to build and run::
81
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -030082 $ make TARGETS="size timers" kselftest
Tim Bird3c415702014-11-19 16:16:16 -080083
Shuah Khan9f436192019-04-17 17:34:03 -060084To build, save output files in a separate directory with O= ::
Shuah Khand5cdbb82017-10-02 17:44:17 -060085
86 $ make O=/tmp/kselftest TARGETS="size timers" kselftest
87
Shuah Khan9f436192019-04-17 17:34:03 -060088To build, save output files in a separate directory with KBUILD_OUTPUT ::
Shuah Khand5cdbb82017-10-02 17:44:17 -060089
Shuah Khan9f436192019-04-17 17:34:03 -060090 $ export KBUILD_OUTPUT=/tmp/kselftest; make TARGETS="size timers" kselftest
Shuah Khand5cdbb82017-10-02 17:44:17 -060091
Cristian Marussi3a24f7f2019-09-26 18:52:18 +010092Additionally you can use the "SKIP_TARGETS" variable on the make command
93line to specify one or more targets to exclude from the TARGETS list.
94
95To run all tests but a single subsystem::
96
97 $ make -C tools/testing/selftests SKIP_TARGETS=ptrace run_tests
98
99You can specify multiple tests to skip::
100
101 $ make SKIP_TARGETS="size timers" kselftest
102
103You can also specify a restricted list of tests to run together with a
104dedicated skiplist::
105
106 $ make TARGETS="bpf breakpoints size timers" SKIP_TARGETS=bpf kselftest
107
Tim Bird3c415702014-11-19 16:16:16 -0800108See the top-level tools/testing/selftests/Makefile for the list of all
109possible targets.
110
Shuah Khanddddda92014-07-02 09:51:38 -0600111Running the full range hotplug selftests
112========================================
113
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200114To build the hotplug tests::
Shuah Khanddddda92014-07-02 09:51:38 -0600115
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300116 $ make -C tools/testing/selftests hotplug
Shuah Khanddddda92014-07-02 09:51:38 -0600117
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200118To run the hotplug tests::
119
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300120 $ make -C tools/testing/selftests run_hotplug
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200121
122Note that some tests will require root privileges.
Jeremy Kerr80d03422013-02-27 17:05:57 -0800123
Tim Bird3c415702014-11-19 16:16:16 -0800124
Wang Long76caa6c2015-09-23 09:35:25 +0000125Install selftests
126=================
127
Kees Cook4c851132020-09-28 13:26:50 -0700128You can use the "install" target of "make" (which calls the `kselftest_install.sh`
129tool) to install selftests in the default location (`tools/testing/selftests/kselftest_install`),
130or in a user specified location via the `INSTALL_PATH` "make" variable.
Wang Long76caa6c2015-09-23 09:35:25 +0000131
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200132To install selftests in default location::
Wang Long76caa6c2015-09-23 09:35:25 +0000133
Kees Cook4c851132020-09-28 13:26:50 -0700134 $ make -C tools/testing/selftests install
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200135
136To install selftests in a user specified location::
137
Kees Cook4c851132020-09-28 13:26:50 -0700138 $ make -C tools/testing/selftests install INSTALL_PATH=/some/other/path
Wang Long76caa6c2015-09-23 09:35:25 +0000139
Shuah Khan78566cf2016-11-07 13:24:14 -0700140Running installed selftests
141===========================
142
Kees Cook4c851132020-09-28 13:26:50 -0700143Found in the install directory, as well as in the Kselftest tarball,
144is a script named `run_kselftest.sh` to run the tests.
Shuah Khan78566cf2016-11-07 13:24:14 -0700145
Randy Dunlapc284d422018-11-04 14:06:23 -0800146You can simply do the following to run the installed Kselftests. Please
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300147note some tests will require root privileges::
Shuah Khan78566cf2016-11-07 13:24:14 -0700148
Kees Cook4c851132020-09-28 13:26:50 -0700149 $ cd kselftest_install
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300150 $ ./run_kselftest.sh
Wang Long76caa6c2015-09-23 09:35:25 +0000151
Kees Cook4c851132020-09-28 13:26:50 -0700152To see the list of available tests, the `-l` option can be used::
153
154 $ ./run_kselftest.sh -l
155
156The `-c` option can be used to run all the tests from a test collection, or
157the `-t` option for specific single tests. Either can be used multiple times::
158
159 $ ./run_kselftest.sh -c bpf -c seccomp -t timers:posix_timers -t timer:nanosleep
160
161For other features see the script usage output, seen with the `-h` option.
162
Veronika Kabatovaa5f30462020-05-19 22:00:45 +0200163Packaging selftests
164===================
165
166In some cases packaging is desired, such as when tests need to run on a
167different system. To package selftests, run::
168
169 $ make -C tools/testing/selftests gen_tar
170
171This generates a tarball in the `INSTALL_PATH/kselftest-packages` directory. By
Kees Cook4c851132020-09-28 13:26:50 -0700172default, `.gz` format is used. The tar compression format can be overridden by
173specifying a `FORMAT` make variable. Any value recognized by `tar's auto-compress`_
174option is supported, such as::
Veronika Kabatovaa5f30462020-05-19 22:00:45 +0200175
176 $ make -C tools/testing/selftests gen_tar FORMAT=.xz
177
178`make gen_tar` invokes `make install` so you can use it to package a subset of
179tests by using variables specified in `Running a subset of selftests`_
180section::
181
182 $ make -C tools/testing/selftests gen_tar TARGETS="bpf" FORMAT=.xz
183
184.. _tar's auto-compress: https://www.gnu.org/software/tar/manual/html_node/gzip.html#auto_002dcompress
185
Jeremy Kerr80d03422013-02-27 17:05:57 -0800186Contributing new tests
187======================
188
Zhiyi Sun4db1fa62016-02-24 00:08:11 +0800189In general, the rules for selftests are
Jeremy Kerr80d03422013-02-27 17:05:57 -0800190
191 * Do as much as you can if you're not root;
192
193 * Don't take too long;
194
195 * Don't break the build on any architecture, and
196
197 * Don't cause the top-level "make run_tests" to fail if your feature is
198 unconfigured.
bamvor.zhangjian@huawei.com88baa782016-11-29 19:55:47 +0800199
Mickaël Salaüncef04cd2017-05-26 20:44:00 +0200200Contributing new tests (details)
201================================
bamvor.zhangjian@huawei.com88baa782016-11-29 19:55:47 +0800202
203 * Use TEST_GEN_XXX if such binaries or files are generated during
204 compiling.
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300205
Shuah Khand5cdbb82017-10-02 17:44:17 -0600206 TEST_PROGS, TEST_GEN_PROGS mean it is the executable tested by
bamvor.zhangjian@huawei.com88baa782016-11-29 19:55:47 +0800207 default.
Mauro Carvalho Chehabfde662d2017-06-17 12:26:40 -0300208
Shuah Khand5cdbb82017-10-02 17:44:17 -0600209 TEST_CUSTOM_PROGS should be used by tests that require custom build
Randy Dunlapc284d422018-11-04 14:06:23 -0800210 rules and prevent common build rule use.
Shuah Khand5cdbb82017-10-02 17:44:17 -0600211
212 TEST_PROGS are for test shell scripts. Please ensure shell script has
213 its exec bit set. Otherwise, lib.mk run_tests will generate a warning.
214
215 TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests.
216
bamvor.zhangjian@huawei.com88baa782016-11-29 19:55:47 +0800217 TEST_PROGS_EXTENDED, TEST_GEN_PROGS_EXTENDED mean it is the
218 executable which is not tested by default.
219 TEST_FILES, TEST_GEN_FILES mean it is the file which is used by
220 test.
Mickaël Salaün7e6a32a2017-06-05 20:37:17 +0200221
Anders Roxella997a702018-04-19 12:28:25 +0200222 * First use the headers inside the kernel source and/or git repo, and then the
223 system headers. Headers for the kernel release as opposed to headers
224 installed by the distro on the system should be the primary focus to be able
225 to find regressions.
226
Anders Roxell8ab14162018-06-29 14:52:01 +0200227 * If a test needs specific kernel config options enabled, add a config file in
228 the test directory to enable them.
229
Anders Roxell0e0f00932018-08-24 14:47:44 +0200230 e.g: tools/testing/selftests/android/config
Anders Roxell8ab14162018-06-29 14:52:01 +0200231
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100232Test Module
233===========
234
235Kselftest tests the kernel from userspace. Sometimes things need
236testing from within the kernel, one method of doing this is to create a
237test module. We can tie the module into the kselftest framework by
Michael Ellerman3a019632019-12-06 14:17:38 +1100238using a shell script test runner. ``kselftest/module.sh`` is designed
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100239to facilitate this process. There is also a header file provided to
240assist writing kernel modules that are for use with kselftest:
241
Antonio Terceiro87f1c202021-02-24 10:06:05 -0300242- ``tools/testing/selftests/kselftest_module.h``
243- ``tools/testing/selftests/kselftest/module.sh``
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100244
245How to use
246----------
247
248Here we show the typical steps to create a test module and tie it into
249kselftest. We use kselftests for lib/ as an example.
250
2511. Create the test module
252
2532. Create the test script that will run (load/unload) the module
254 e.g. ``tools/testing/selftests/lib/printf.sh``
255
2563. Add line to config file e.g. ``tools/testing/selftests/lib/config``
257
2584. Add test script to makefile e.g. ``tools/testing/selftests/lib/Makefile``
259
2605. Verify it works:
261
262.. code-block:: sh
263
264 # Assumes you have booted a fresh build of this kernel tree
265 cd /path/to/linux/tree
266 make kselftest-merge
267 make modules
268 sudo make modules_install
269 make TARGETS=lib kselftest
270
271Example Module
272--------------
273
274A bare bones test module might look like this:
275
276.. code-block:: c
277
278 // SPDX-License-Identifier: GPL-2.0+
279
280 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
281
Michael Ellerman3a019632019-12-06 14:17:38 +1100282 #include "../tools/testing/selftests/kselftest/module.h"
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100283
284 KSTM_MODULE_GLOBALS();
285
286 /*
287 * Kernel module for testing the foobinator
288 */
289
290 static int __init test_function()
291 {
292 ...
293 }
294
295 static void __init selftest(void)
296 {
297 KSTM_CHECK_ZERO(do_test_case("", 0));
298 }
299
300 KSTM_MODULE_LOADERS(test_foo);
301 MODULE_AUTHOR("John Developer <jd@fooman.org>");
302 MODULE_LICENSE("GPL");
303
304Example test script
305-------------------
306
307.. code-block:: sh
308
309 #!/bin/bash
310 # SPDX-License-Identifier: GPL-2.0+
Michael Ellerman3a019632019-12-06 14:17:38 +1100311 $(dirname $0)/../kselftest/module.sh "foo" test_foo
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100312
313
Mickaël Salaün7e6a32a2017-06-05 20:37:17 +0200314Test Harness
315============
316
Tobin C. Hardingeebf4dd2019-04-05 12:58:56 +1100317The kselftest_harness.h file contains useful helpers to build tests. The
318test harness is for userspace testing, for kernel space testing see `Test
319Module`_ above.
320
321The tests from tools/testing/selftests/seccomp/seccomp_bpf.c can be used as
322example.
Mickaël Salaün7e6a32a2017-06-05 20:37:17 +0200323
324Example
325-------
326
327.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
328 :doc: example
329
330
331Helpers
332-------
333
334.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
335 :functions: TH_LOG TEST TEST_SIGNAL FIXTURE FIXTURE_DATA FIXTURE_SETUP
Jakub Kicinski74bc7c92020-04-27 18:03:50 -0700336 FIXTURE_TEARDOWN TEST_F TEST_HARNESS_MAIN FIXTURE_VARIANT
337 FIXTURE_VARIANT_ADD
Mickaël Salaün7e6a32a2017-06-05 20:37:17 +0200338
339Operators
340---------
341
342.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
343 :doc: operators
344
345.. kernel-doc:: tools/testing/selftests/kselftest_harness.h
346 :functions: ASSERT_EQ ASSERT_NE ASSERT_LT ASSERT_LE ASSERT_GT ASSERT_GE
347 ASSERT_NULL ASSERT_TRUE ASSERT_NULL ASSERT_TRUE ASSERT_FALSE
348 ASSERT_STREQ ASSERT_STRNE EXPECT_EQ EXPECT_NE EXPECT_LT
349 EXPECT_LE EXPECT_GT EXPECT_GE EXPECT_NULL EXPECT_TRUE
350 EXPECT_FALSE EXPECT_STREQ EXPECT_STRNE