kselftest.rst 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. ======================
  2. Linux Kernel Selftests
  3. ======================
  4. The kernel contains a set of "self tests" under the tools/testing/selftests/
  5. directory. These are intended to be small tests to exercise individual code
  6. paths in the kernel. Tests are intended to be run after building, installing
  7. and booting a kernel.
  8. Kselftest from mainline can be run on older stable kernels. Running tests
  9. from mainline offers the best coverage. Several test rings run mainline
  10. kselftest suite on stable releases. The reason is that when a new test
  11. gets added to test existing code to regression test a bug, we should be
  12. able to run that test on an older kernel. Hence, it is important to keep
  13. code that can still test an older kernel and make sure it skips the test
  14. gracefully on newer releases.
  15. You can find additional information on Kselftest framework, how to
  16. write new tests using the framework on Kselftest wiki:
  17. https://kselftest.wiki.kernel.org/
  18. On some systems, hot-plug tests could hang forever waiting for cpu and
  19. memory to be ready to be offlined. A special hot-plug target is created
  20. to run the full range of hot-plug tests. In default mode, hot-plug tests run
  21. in safe mode with a limited scope. In limited mode, cpu-hotplug test is
  22. run on a single cpu as opposed to all hotplug capable cpus, and memory
  23. hotplug test is run on 2% of hotplug capable memory instead of 10%.
  24. kselftest runs as a userspace process. Tests that can be written/run in
  25. userspace may wish to use the `Test Harness`_. Tests that need to be
  26. run in kernel space may wish to use a `Test Module`_.
  27. Running the selftests (hotplug tests are run in limited mode)
  28. =============================================================
  29. To build the tests::
  30. $ make headers
  31. $ make -C tools/testing/selftests
  32. To run the tests::
  33. $ make -C tools/testing/selftests run_tests
  34. To build and run the tests with a single command, use::
  35. $ make kselftest
  36. Note that some tests will require root privileges.
  37. Kselftest supports saving output files in a separate directory and then
  38. running tests. To locate output files in a separate directory two syntaxes
  39. are supported. In both cases the working directory must be the root of the
  40. kernel src. This is applicable to "Running a subset of selftests" section
  41. below.
  42. To build, save output files in a separate directory with O= ::
  43. $ make O=/tmp/kselftest kselftest
  44. To build, save output files in a separate directory with KBUILD_OUTPUT ::
  45. $ export KBUILD_OUTPUT=/tmp/kselftest; make kselftest
  46. The O= assignment takes precedence over the KBUILD_OUTPUT environment
  47. variable.
  48. The above commands by default run the tests and print full pass/fail report.
  49. Kselftest supports "summary" option to make it easier to understand the test
  50. results. Please find the detailed individual test results for each test in
  51. /tmp/testname file(s) when summary option is specified. This is applicable
  52. to "Running a subset of selftests" section below.
  53. To run kselftest with summary option enabled ::
  54. $ make summary=1 kselftest
  55. Running a subset of selftests
  56. =============================
  57. You can use the "TARGETS" variable on the make command line to specify
  58. single test to run, or a list of tests to run.
  59. To run only tests targeted for a single subsystem::
  60. $ make -C tools/testing/selftests TARGETS=ptrace run_tests
  61. You can specify multiple tests to build and run::
  62. $ make TARGETS="size timers" kselftest
  63. To build, save output files in a separate directory with O= ::
  64. $ make O=/tmp/kselftest TARGETS="size timers" kselftest
  65. To build, save output files in a separate directory with KBUILD_OUTPUT ::
  66. $ export KBUILD_OUTPUT=/tmp/kselftest; make TARGETS="size timers" kselftest
  67. Additionally you can use the "SKIP_TARGETS" variable on the make command
  68. line to specify one or more targets to exclude from the TARGETS list.
  69. To run all tests but a single subsystem::
  70. $ make -C tools/testing/selftests SKIP_TARGETS=ptrace run_tests
  71. You can specify multiple tests to skip::
  72. $ make SKIP_TARGETS="size timers" kselftest
  73. You can also specify a restricted list of tests to run together with a
  74. dedicated skiplist::
  75. $ make TARGETS="breakpoints size timers" SKIP_TARGETS=size kselftest
  76. See the top-level tools/testing/selftests/Makefile for the list of all
  77. possible targets.
  78. Running the full range hotplug selftests
  79. ========================================
  80. To build the hotplug tests::
  81. $ make -C tools/testing/selftests hotplug
  82. To run the hotplug tests::
  83. $ make -C tools/testing/selftests run_hotplug
  84. Note that some tests will require root privileges.
  85. Install selftests
  86. =================
  87. You can use the "install" target of "make" (which calls the `kselftest_install.sh`
  88. tool) to install selftests in the default location (`tools/testing/selftests/kselftest_install`),
  89. or in a user specified location via the `INSTALL_PATH` "make" variable.
  90. To install selftests in default location::
  91. $ make -C tools/testing/selftests install
  92. To install selftests in a user specified location::
  93. $ make -C tools/testing/selftests install INSTALL_PATH=/some/other/path
  94. Running installed selftests
  95. ===========================
  96. Found in the install directory, as well as in the Kselftest tarball,
  97. is a script named `run_kselftest.sh` to run the tests.
  98. You can simply do the following to run the installed Kselftests. Please
  99. note some tests will require root privileges::
  100. $ cd kselftest_install
  101. $ ./run_kselftest.sh
  102. To see the list of available tests, the `-l` option can be used::
  103. $ ./run_kselftest.sh -l
  104. The `-c` option can be used to run all the tests from a test collection, or
  105. the `-t` option for specific single tests. Either can be used multiple times::
  106. $ ./run_kselftest.sh -c size -c seccomp -t timers:posix_timers -t timer:nanosleep
  107. For other features see the script usage output, seen with the `-h` option.
  108. Timeout for selftests
  109. =====================
  110. Selftests are designed to be quick and so a default timeout is used of 45
  111. seconds for each test. Tests can override the default timeout by adding
  112. a settings file in their directory and set a timeout variable there to the
  113. configured a desired upper timeout for the test. Only a few tests override
  114. the timeout with a value higher than 45 seconds, selftests strives to keep
  115. it that way. Timeouts in selftests are not considered fatal because the
  116. system under which a test runs may change and this can also modify the
  117. expected time it takes to run a test. If you have control over the systems
  118. which will run the tests you can configure a test runner on those systems to
  119. use a greater or lower timeout on the command line as with the `-o` or
  120. the `--override-timeout` argument. For example to use 165 seconds instead
  121. one would use::
  122. $ ./run_kselftest.sh --override-timeout 165
  123. You can look at the TAP output to see if you ran into the timeout. Test
  124. runners which know a test must run under a specific time can then optionally
  125. treat these timeouts then as fatal.
  126. Packaging selftests
  127. ===================
  128. In some cases packaging is desired, such as when tests need to run on a
  129. different system. To package selftests, run::
  130. $ make -C tools/testing/selftests gen_tar
  131. This generates a tarball in the `INSTALL_PATH/kselftest-packages` directory. By
  132. default, `.gz` format is used. The tar compression format can be overridden by
  133. specifying a `FORMAT` make variable. Any value recognized by `tar's auto-compress`_
  134. option is supported, such as::
  135. $ make -C tools/testing/selftests gen_tar FORMAT=.xz
  136. `make gen_tar` invokes `make install` so you can use it to package a subset of
  137. tests by using variables specified in `Running a subset of selftests`_
  138. section::
  139. $ make -C tools/testing/selftests gen_tar TARGETS="size" FORMAT=.xz
  140. .. _tar's auto-compress: https://www.gnu.org/software/tar/manual/html_node/gzip.html#auto_002dcompress
  141. Contributing new tests
  142. ======================
  143. In general, the rules for selftests are
  144. * Do as much as you can if you're not root;
  145. * Don't take too long;
  146. * Don't break the build on any architecture, and
  147. * Don't cause the top-level "make run_tests" to fail if your feature is
  148. unconfigured.
  149. * The output of tests must conform to the TAP standard to ensure high
  150. testing quality and to capture failures/errors with specific details.
  151. The kselftest.h and kselftest_harness.h headers provide wrappers for
  152. outputting test results. These wrappers should be used for pass,
  153. fail, exit, and skip messages. CI systems can easily parse TAP output
  154. messages to detect test results.
  155. Contributing new tests (details)
  156. ================================
  157. * In your Makefile, use facilities from lib.mk by including it instead of
  158. reinventing the wheel. Specify flags and binaries generation flags on
  159. need basis before including lib.mk. ::
  160. CFLAGS = $(KHDR_INCLUDES)
  161. TEST_GEN_PROGS := close_range_test
  162. include ../lib.mk
  163. * Use TEST_GEN_XXX if such binaries or files are generated during
  164. compiling.
  165. TEST_PROGS, TEST_GEN_PROGS mean it is the executable tested by
  166. default.
  167. TEST_GEN_MODS_DIR should be used by tests that require modules to be built
  168. before the test starts. The variable will contain the name of the directory
  169. containing the modules.
  170. TEST_CUSTOM_PROGS should be used by tests that require custom build
  171. rules and prevent common build rule use.
  172. TEST_PROGS are for test shell scripts. Please ensure shell script has
  173. its exec bit set. Otherwise, lib.mk run_tests will generate a warning.
  174. TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests.
  175. TEST_PROGS_EXTENDED, TEST_GEN_PROGS_EXTENDED mean it is the
  176. executable which is not tested by default.
  177. TEST_FILES, TEST_GEN_FILES mean it is the file which is used by
  178. test.
  179. TEST_INCLUDES is similar to TEST_FILES, it lists files which should be
  180. included when exporting or installing the tests, with the following
  181. differences:
  182. * symlinks to files in other directories are preserved
  183. * the part of paths below tools/testing/selftests/ is preserved when
  184. copying the files to the output directory
  185. TEST_INCLUDES is meant to list dependencies located in other directories of
  186. the selftests hierarchy.
  187. * First use the headers inside the kernel source and/or git repo, and then the
  188. system headers. Headers for the kernel release as opposed to headers
  189. installed by the distro on the system should be the primary focus to be able
  190. to find regressions. Use KHDR_INCLUDES in Makefile to include headers from
  191. the kernel source.
  192. * If a test needs specific kernel config options enabled, add a config file in
  193. the test directory to enable them.
  194. e.g: tools/testing/selftests/android/config
  195. * Create a .gitignore file inside test directory and add all generated objects
  196. in it.
  197. * Add new test name in TARGETS in selftests/Makefile::
  198. TARGETS += android
  199. * All changes should pass::
  200. kselftest-{all,install,clean,gen_tar}
  201. kselftest-{all,install,clean,gen_tar} O=abo_path
  202. kselftest-{all,install,clean,gen_tar} O=rel_path
  203. make -C tools/testing/selftests {all,install,clean,gen_tar}
  204. make -C tools/testing/selftests {all,install,clean,gen_tar} O=abs_path
  205. make -C tools/testing/selftests {all,install,clean,gen_tar} O=rel_path
  206. Test Module
  207. ===========
  208. Kselftest tests the kernel from userspace. Sometimes things need
  209. testing from within the kernel, one method of doing this is to create a
  210. test module. We can tie the module into the kselftest framework by
  211. using a shell script test runner. ``kselftest/module.sh`` is designed
  212. to facilitate this process. There is also a header file provided to
  213. assist writing kernel modules that are for use with kselftest:
  214. - ``tools/testing/selftests/kselftest_module.h``
  215. - ``tools/testing/selftests/kselftest/module.sh``
  216. Note that test modules should taint the kernel with TAINT_TEST. This will
  217. happen automatically for modules which are in the ``tools/testing/``
  218. directory, or for modules which use the ``kselftest_module.h`` header above.
  219. Otherwise, you'll need to add ``MODULE_INFO(test, "Y")`` to your module
  220. source. selftests which do not load modules typically should not taint the
  221. kernel, but in cases where a non-test module is loaded, TEST_TAINT can be
  222. applied from userspace by writing to ``/proc/sys/kernel/tainted``.
  223. How to use
  224. ----------
  225. Here we show the typical steps to create a test module and tie it into
  226. kselftest. We use kselftests for lib/ as an example.
  227. 1. Create the test module
  228. 2. Create the test script that will run (load/unload) the module
  229. e.g. ``tools/testing/selftests/lib/printf.sh``
  230. 3. Add line to config file e.g. ``tools/testing/selftests/lib/config``
  231. 4. Add test script to makefile e.g. ``tools/testing/selftests/lib/Makefile``
  232. 5. Verify it works:
  233. .. code-block:: sh
  234. # Assumes you have booted a fresh build of this kernel tree
  235. cd /path/to/linux/tree
  236. make kselftest-merge
  237. make modules
  238. sudo make modules_install
  239. make TARGETS=lib kselftest
  240. Example Module
  241. --------------
  242. A bare bones test module might look like this:
  243. .. code-block:: c
  244. // SPDX-License-Identifier: GPL-2.0+
  245. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  246. #include "../tools/testing/selftests/kselftest_module.h"
  247. KSTM_MODULE_GLOBALS();
  248. /*
  249. * Kernel module for testing the foobinator
  250. */
  251. static int __init test_function()
  252. {
  253. ...
  254. }
  255. static void __init selftest(void)
  256. {
  257. KSTM_CHECK_ZERO(do_test_case("", 0));
  258. }
  259. KSTM_MODULE_LOADERS(test_foo);
  260. MODULE_AUTHOR("John Developer <jd@fooman.org>");
  261. MODULE_LICENSE("GPL");
  262. MODULE_INFO(test, "Y");
  263. Example test script
  264. -------------------
  265. .. code-block:: sh
  266. #!/bin/bash
  267. # SPDX-License-Identifier: GPL-2.0+
  268. $(dirname $0)/../kselftest/module.sh "foo" test_foo
  269. Test Harness
  270. ============
  271. The kselftest_harness.h file contains useful helpers to build tests. The
  272. test harness is for userspace testing, for kernel space testing see `Test
  273. Module`_ above.
  274. The tests from tools/testing/selftests/seccomp/seccomp_bpf.c can be used as
  275. example.
  276. Example
  277. -------
  278. .. kernel-doc:: tools/testing/selftests/kselftest_harness.h
  279. :doc: example
  280. Helpers
  281. -------
  282. .. kernel-doc:: tools/testing/selftests/kselftest_harness.h
  283. :functions: TH_LOG TEST TEST_SIGNAL FIXTURE FIXTURE_DATA FIXTURE_SETUP
  284. FIXTURE_TEARDOWN TEST_F TEST_HARNESS_MAIN FIXTURE_VARIANT
  285. FIXTURE_VARIANT_ADD
  286. Operators
  287. ---------
  288. .. kernel-doc:: tools/testing/selftests/kselftest_harness.h
  289. :doc: operators
  290. .. kernel-doc:: tools/testing/selftests/kselftest_harness.h
  291. :functions: ASSERT_EQ ASSERT_NE ASSERT_LT ASSERT_LE ASSERT_GT ASSERT_GE
  292. ASSERT_NULL ASSERT_TRUE ASSERT_NULL ASSERT_TRUE ASSERT_FALSE
  293. ASSERT_STREQ ASSERT_STRNE EXPECT_EQ EXPECT_NE EXPECT_LT
  294. EXPECT_LE EXPECT_GT EXPECT_GE EXPECT_NULL EXPECT_TRUE
  295. EXPECT_FALSE EXPECT_STREQ EXPECT_STRNE