Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 1 | ====================== |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 2 | Linux Kernel Selftests |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 3 | ====================== |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 4 | |
| 5 | The kernel contains a set of "self tests" under the tools/testing/selftests/ |
Aleksander Alekseev | 3409f9a | 2016-08-18 12:36:53 +0300 | [diff] [blame] | 6 | directory. These are intended to be small tests to exercise individual code |
| 7 | paths in the kernel. Tests are intended to be run after building, installing |
| 8 | and booting a kernel. |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 9 | |
Shuah Khan | dede34b | 2022-01-26 13:13:41 -0700 | [diff] [blame] | 10 | Kselftest from mainline can be run on older stable kernels. Running tests |
| 11 | from mainline offers the best coverage. Several test rings run mainline |
| 12 | kselftest suite on stable releases. The reason is that when a new test |
| 13 | gets added to test existing code to regression test a bug, we should be |
| 14 | able to run that test on an older kernel. Hence, it is important to keep |
| 15 | code that can still test an older kernel and make sure it skips the test |
| 16 | gracefully on newer releases. |
| 17 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 18 | You can find additional information on Kselftest framework, how to |
| 19 | write new tests using the framework on Kselftest wiki: |
| 20 | |
| 21 | https://kselftest.wiki.kernel.org/ |
| 22 | |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 23 | On some systems, hot-plug tests could hang forever waiting for cpu and |
| 24 | memory to be ready to be offlined. A special hot-plug target is created |
Randy Dunlap | c284d42 | 2018-11-04 14:06:23 -0800 | [diff] [blame] | 25 | to run the full range of hot-plug tests. In default mode, hot-plug tests run |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 26 | in safe mode with a limited scope. In limited mode, cpu-hotplug test is |
| 27 | run on a single cpu as opposed to all hotplug capable cpus, and memory |
| 28 | hotplug test is run on 2% of hotplug capable memory instead of 10%. |
| 29 | |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 30 | kselftest runs as a userspace process. Tests that can be written/run in |
| 31 | userspace may wish to use the `Test Harness`_. Tests that need to be |
| 32 | run in kernel space may wish to use a `Test Module`_. |
| 33 | |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 34 | Running the selftests (hotplug tests are run in limited mode) |
| 35 | ============================================================= |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 36 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 37 | To build the tests:: |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 38 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 39 | $ make -C tools/testing/selftests |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 40 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 41 | To run the tests:: |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 42 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 43 | $ make -C tools/testing/selftests run_tests |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 44 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 45 | To build and run the tests with a single command, use:: |
| 46 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 47 | $ make kselftest |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 48 | |
| 49 | Note that some tests will require root privileges. |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 50 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 51 | Kselftest supports saving output files in a separate directory and then |
| 52 | running tests. To locate output files in a separate directory two syntaxes |
| 53 | are supported. In both cases the working directory must be the root of the |
| 54 | kernel src. This is applicable to "Running a subset of selftests" section |
| 55 | below. |
| 56 | |
| 57 | To build, save output files in a separate directory with O= :: |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 58 | |
| 59 | $ make O=/tmp/kselftest kselftest |
| 60 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 61 | To build, save output files in a separate directory with KBUILD_OUTPUT :: |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 62 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 63 | $ export KBUILD_OUTPUT=/tmp/kselftest; make kselftest |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 64 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 65 | The O= assignment takes precedence over the KBUILD_OUTPUT environment |
| 66 | variable. |
| 67 | |
| 68 | The above commands by default run the tests and print full pass/fail report. |
| 69 | Kselftest supports "summary" option to make it easier to understand the test |
| 70 | results. Please find the detailed individual test results for each test in |
| 71 | /tmp/testname file(s) when summary option is specified. This is applicable |
| 72 | to "Running a subset of selftests" section below. |
| 73 | |
| 74 | To run kselftest with summary option enabled :: |
| 75 | |
| 76 | $ make summary=1 kselftest |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 77 | |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 78 | Running a subset of selftests |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 79 | ============================= |
| 80 | |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 81 | You can use the "TARGETS" variable on the make command line to specify |
| 82 | single test to run, or a list of tests to run. |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 83 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 84 | To run only tests targeted for a single subsystem:: |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 85 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 86 | $ make -C tools/testing/selftests TARGETS=ptrace run_tests |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 87 | |
| 88 | You can specify multiple tests to build and run:: |
| 89 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 90 | $ make TARGETS="size timers" kselftest |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 91 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 92 | To build, save output files in a separate directory with O= :: |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 93 | |
| 94 | $ make O=/tmp/kselftest TARGETS="size timers" kselftest |
| 95 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 96 | To build, save output files in a separate directory with KBUILD_OUTPUT :: |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 97 | |
Shuah Khan | 9f43619 | 2019-04-17 17:34:03 -0600 | [diff] [blame] | 98 | $ export KBUILD_OUTPUT=/tmp/kselftest; make TARGETS="size timers" kselftest |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 99 | |
Cristian Marussi | 3a24f7f | 2019-09-26 18:52:18 +0100 | [diff] [blame] | 100 | Additionally you can use the "SKIP_TARGETS" variable on the make command |
| 101 | line to specify one or more targets to exclude from the TARGETS list. |
| 102 | |
| 103 | To run all tests but a single subsystem:: |
| 104 | |
| 105 | $ make -C tools/testing/selftests SKIP_TARGETS=ptrace run_tests |
| 106 | |
| 107 | You can specify multiple tests to skip:: |
| 108 | |
| 109 | $ make SKIP_TARGETS="size timers" kselftest |
| 110 | |
| 111 | You can also specify a restricted list of tests to run together with a |
| 112 | dedicated skiplist:: |
| 113 | |
| 114 | $ make TARGETS="bpf breakpoints size timers" SKIP_TARGETS=bpf kselftest |
| 115 | |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 116 | See the top-level tools/testing/selftests/Makefile for the list of all |
| 117 | possible targets. |
| 118 | |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 119 | Running the full range hotplug selftests |
| 120 | ======================================== |
| 121 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 122 | To build the hotplug tests:: |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 123 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 124 | $ make -C tools/testing/selftests hotplug |
Shuah Khan | ddddda9 | 2014-07-02 09:51:38 -0600 | [diff] [blame] | 125 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 126 | To run the hotplug tests:: |
| 127 | |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 128 | $ make -C tools/testing/selftests run_hotplug |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 129 | |
| 130 | Note that some tests will require root privileges. |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 131 | |
Tim Bird | 3c41570 | 2014-11-19 16:16:16 -0800 | [diff] [blame] | 132 | |
Wang Long | 76caa6c | 2015-09-23 09:35:25 +0000 | [diff] [blame] | 133 | Install selftests |
| 134 | ================= |
| 135 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 136 | You can use the "install" target of "make" (which calls the `kselftest_install.sh` |
| 137 | tool) to install selftests in the default location (`tools/testing/selftests/kselftest_install`), |
| 138 | or in a user specified location via the `INSTALL_PATH` "make" variable. |
Wang Long | 76caa6c | 2015-09-23 09:35:25 +0000 | [diff] [blame] | 139 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 140 | To install selftests in default location:: |
Wang Long | 76caa6c | 2015-09-23 09:35:25 +0000 | [diff] [blame] | 141 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 142 | $ make -C tools/testing/selftests install |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 143 | |
| 144 | To install selftests in a user specified location:: |
| 145 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 146 | $ make -C tools/testing/selftests install INSTALL_PATH=/some/other/path |
Wang Long | 76caa6c | 2015-09-23 09:35:25 +0000 | [diff] [blame] | 147 | |
Shuah Khan | 78566cf | 2016-11-07 13:24:14 -0700 | [diff] [blame] | 148 | Running installed selftests |
| 149 | =========================== |
| 150 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 151 | Found in the install directory, as well as in the Kselftest tarball, |
| 152 | is a script named `run_kselftest.sh` to run the tests. |
Shuah Khan | 78566cf | 2016-11-07 13:24:14 -0700 | [diff] [blame] | 153 | |
Randy Dunlap | c284d42 | 2018-11-04 14:06:23 -0800 | [diff] [blame] | 154 | You can simply do the following to run the installed Kselftests. Please |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 155 | note some tests will require root privileges:: |
Shuah Khan | 78566cf | 2016-11-07 13:24:14 -0700 | [diff] [blame] | 156 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 157 | $ cd kselftest_install |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 158 | $ ./run_kselftest.sh |
Wang Long | 76caa6c | 2015-09-23 09:35:25 +0000 | [diff] [blame] | 159 | |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 160 | To see the list of available tests, the `-l` option can be used:: |
| 161 | |
| 162 | $ ./run_kselftest.sh -l |
| 163 | |
| 164 | The `-c` option can be used to run all the tests from a test collection, or |
| 165 | the `-t` option for specific single tests. Either can be used multiple times:: |
| 166 | |
| 167 | $ ./run_kselftest.sh -c bpf -c seccomp -t timers:posix_timers -t timer:nanosleep |
| 168 | |
| 169 | For other features see the script usage output, seen with the `-h` option. |
| 170 | |
Veronika Kabatova | a5f3046 | 2020-05-19 22:00:45 +0200 | [diff] [blame] | 171 | Packaging selftests |
| 172 | =================== |
| 173 | |
| 174 | In some cases packaging is desired, such as when tests need to run on a |
| 175 | different system. To package selftests, run:: |
| 176 | |
| 177 | $ make -C tools/testing/selftests gen_tar |
| 178 | |
| 179 | This generates a tarball in the `INSTALL_PATH/kselftest-packages` directory. By |
Kees Cook | 4c85113 | 2020-09-28 13:26:50 -0700 | [diff] [blame] | 180 | default, `.gz` format is used. The tar compression format can be overridden by |
| 181 | specifying a `FORMAT` make variable. Any value recognized by `tar's auto-compress`_ |
| 182 | option is supported, such as:: |
Veronika Kabatova | a5f3046 | 2020-05-19 22:00:45 +0200 | [diff] [blame] | 183 | |
| 184 | $ make -C tools/testing/selftests gen_tar FORMAT=.xz |
| 185 | |
| 186 | `make gen_tar` invokes `make install` so you can use it to package a subset of |
| 187 | tests by using variables specified in `Running a subset of selftests`_ |
| 188 | section:: |
| 189 | |
| 190 | $ make -C tools/testing/selftests gen_tar TARGETS="bpf" FORMAT=.xz |
| 191 | |
| 192 | .. _tar's auto-compress: https://www.gnu.org/software/tar/manual/html_node/gzip.html#auto_002dcompress |
| 193 | |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 194 | Contributing new tests |
| 195 | ====================== |
| 196 | |
Zhiyi Sun | 4db1fa6 | 2016-02-24 00:08:11 +0800 | [diff] [blame] | 197 | In general, the rules for selftests are |
Jeremy Kerr | 80d0342 | 2013-02-27 17:05:57 -0800 | [diff] [blame] | 198 | |
| 199 | * Do as much as you can if you're not root; |
| 200 | |
| 201 | * Don't take too long; |
| 202 | |
| 203 | * Don't break the build on any architecture, and |
| 204 | |
| 205 | * Don't cause the top-level "make run_tests" to fail if your feature is |
| 206 | unconfigured. |
bamvor.zhangjian@huawei.com | 88baa78 | 2016-11-29 19:55:47 +0800 | [diff] [blame] | 207 | |
Mickaël Salaün | cef04cd | 2017-05-26 20:44:00 +0200 | [diff] [blame] | 208 | Contributing new tests (details) |
| 209 | ================================ |
bamvor.zhangjian@huawei.com | 88baa78 | 2016-11-29 19:55:47 +0800 | [diff] [blame] | 210 | |
| 211 | * Use TEST_GEN_XXX if such binaries or files are generated during |
| 212 | compiling. |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 213 | |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 214 | TEST_PROGS, TEST_GEN_PROGS mean it is the executable tested by |
bamvor.zhangjian@huawei.com | 88baa78 | 2016-11-29 19:55:47 +0800 | [diff] [blame] | 215 | default. |
Mauro Carvalho Chehab | fde662d | 2017-06-17 12:26:40 -0300 | [diff] [blame] | 216 | |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 217 | TEST_CUSTOM_PROGS should be used by tests that require custom build |
Randy Dunlap | c284d42 | 2018-11-04 14:06:23 -0800 | [diff] [blame] | 218 | rules and prevent common build rule use. |
Shuah Khan | d5cdbb8 | 2017-10-02 17:44:17 -0600 | [diff] [blame] | 219 | |
| 220 | TEST_PROGS are for test shell scripts. Please ensure shell script has |
| 221 | its exec bit set. Otherwise, lib.mk run_tests will generate a warning. |
| 222 | |
| 223 | TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests. |
| 224 | |
bamvor.zhangjian@huawei.com | 88baa78 | 2016-11-29 19:55:47 +0800 | [diff] [blame] | 225 | TEST_PROGS_EXTENDED, TEST_GEN_PROGS_EXTENDED mean it is the |
| 226 | executable which is not tested by default. |
| 227 | TEST_FILES, TEST_GEN_FILES mean it is the file which is used by |
| 228 | test. |
Mickaël Salaün | 7e6a32a | 2017-06-05 20:37:17 +0200 | [diff] [blame] | 229 | |
Anders Roxell | a997a70 | 2018-04-19 12:28:25 +0200 | [diff] [blame] | 230 | * First use the headers inside the kernel source and/or git repo, and then the |
| 231 | system headers. Headers for the kernel release as opposed to headers |
| 232 | installed by the distro on the system should be the primary focus to be able |
| 233 | to find regressions. |
| 234 | |
Anders Roxell | 8ab1416 | 2018-06-29 14:52:01 +0200 | [diff] [blame] | 235 | * If a test needs specific kernel config options enabled, add a config file in |
| 236 | the test directory to enable them. |
| 237 | |
Anders Roxell | 0e0f0093 | 2018-08-24 14:47:44 +0200 | [diff] [blame] | 238 | e.g: tools/testing/selftests/android/config |
Anders Roxell | 8ab1416 | 2018-06-29 14:52:01 +0200 | [diff] [blame] | 239 | |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 240 | Test Module |
| 241 | =========== |
| 242 | |
| 243 | Kselftest tests the kernel from userspace. Sometimes things need |
| 244 | testing from within the kernel, one method of doing this is to create a |
| 245 | test module. We can tie the module into the kselftest framework by |
Michael Ellerman | 3a01963 | 2019-12-06 14:17:38 +1100 | [diff] [blame] | 246 | using a shell script test runner. ``kselftest/module.sh`` is designed |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 247 | to facilitate this process. There is also a header file provided to |
| 248 | assist writing kernel modules that are for use with kselftest: |
| 249 | |
Antonio Terceiro | 87f1c20 | 2021-02-24 10:06:05 -0300 | [diff] [blame] | 250 | - ``tools/testing/selftests/kselftest_module.h`` |
| 251 | - ``tools/testing/selftests/kselftest/module.sh`` |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 252 | |
| 253 | How to use |
| 254 | ---------- |
| 255 | |
| 256 | Here we show the typical steps to create a test module and tie it into |
| 257 | kselftest. We use kselftests for lib/ as an example. |
| 258 | |
| 259 | 1. Create the test module |
| 260 | |
| 261 | 2. Create the test script that will run (load/unload) the module |
| 262 | e.g. ``tools/testing/selftests/lib/printf.sh`` |
| 263 | |
| 264 | 3. Add line to config file e.g. ``tools/testing/selftests/lib/config`` |
| 265 | |
| 266 | 4. Add test script to makefile e.g. ``tools/testing/selftests/lib/Makefile`` |
| 267 | |
| 268 | 5. Verify it works: |
| 269 | |
| 270 | .. code-block:: sh |
| 271 | |
| 272 | # Assumes you have booted a fresh build of this kernel tree |
| 273 | cd /path/to/linux/tree |
| 274 | make kselftest-merge |
| 275 | make modules |
| 276 | sudo make modules_install |
| 277 | make TARGETS=lib kselftest |
| 278 | |
| 279 | Example Module |
| 280 | -------------- |
| 281 | |
| 282 | A bare bones test module might look like this: |
| 283 | |
| 284 | .. code-block:: c |
| 285 | |
| 286 | // SPDX-License-Identifier: GPL-2.0+ |
| 287 | |
| 288 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 289 | |
Michael Ellerman | 3a01963 | 2019-12-06 14:17:38 +1100 | [diff] [blame] | 290 | #include "../tools/testing/selftests/kselftest/module.h" |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 291 | |
| 292 | KSTM_MODULE_GLOBALS(); |
| 293 | |
| 294 | /* |
| 295 | * Kernel module for testing the foobinator |
| 296 | */ |
| 297 | |
| 298 | static int __init test_function() |
| 299 | { |
| 300 | ... |
| 301 | } |
| 302 | |
| 303 | static void __init selftest(void) |
| 304 | { |
| 305 | KSTM_CHECK_ZERO(do_test_case("", 0)); |
| 306 | } |
| 307 | |
| 308 | KSTM_MODULE_LOADERS(test_foo); |
| 309 | MODULE_AUTHOR("John Developer <jd@fooman.org>"); |
| 310 | MODULE_LICENSE("GPL"); |
| 311 | |
| 312 | Example test script |
| 313 | ------------------- |
| 314 | |
| 315 | .. code-block:: sh |
| 316 | |
| 317 | #!/bin/bash |
| 318 | # SPDX-License-Identifier: GPL-2.0+ |
Michael Ellerman | 3a01963 | 2019-12-06 14:17:38 +1100 | [diff] [blame] | 319 | $(dirname $0)/../kselftest/module.sh "foo" test_foo |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 320 | |
| 321 | |
Mickaël Salaün | 7e6a32a | 2017-06-05 20:37:17 +0200 | [diff] [blame] | 322 | Test Harness |
| 323 | ============ |
| 324 | |
Tobin C. Harding | eebf4dd | 2019-04-05 12:58:56 +1100 | [diff] [blame] | 325 | The kselftest_harness.h file contains useful helpers to build tests. The |
| 326 | test harness is for userspace testing, for kernel space testing see `Test |
| 327 | Module`_ above. |
| 328 | |
| 329 | The tests from tools/testing/selftests/seccomp/seccomp_bpf.c can be used as |
| 330 | example. |
Mickaël Salaün | 7e6a32a | 2017-06-05 20:37:17 +0200 | [diff] [blame] | 331 | |
| 332 | Example |
| 333 | ------- |
| 334 | |
| 335 | .. kernel-doc:: tools/testing/selftests/kselftest_harness.h |
| 336 | :doc: example |
| 337 | |
| 338 | |
| 339 | Helpers |
| 340 | ------- |
| 341 | |
| 342 | .. kernel-doc:: tools/testing/selftests/kselftest_harness.h |
| 343 | :functions: TH_LOG TEST TEST_SIGNAL FIXTURE FIXTURE_DATA FIXTURE_SETUP |
Jakub Kicinski | 74bc7c9 | 2020-04-27 18:03:50 -0700 | [diff] [blame] | 344 | FIXTURE_TEARDOWN TEST_F TEST_HARNESS_MAIN FIXTURE_VARIANT |
| 345 | FIXTURE_VARIANT_ADD |
Mickaël Salaün | 7e6a32a | 2017-06-05 20:37:17 +0200 | [diff] [blame] | 346 | |
| 347 | Operators |
| 348 | --------- |
| 349 | |
| 350 | .. kernel-doc:: tools/testing/selftests/kselftest_harness.h |
| 351 | :doc: operators |
| 352 | |
| 353 | .. kernel-doc:: tools/testing/selftests/kselftest_harness.h |
| 354 | :functions: ASSERT_EQ ASSERT_NE ASSERT_LT ASSERT_LE ASSERT_GT ASSERT_GE |
| 355 | ASSERT_NULL ASSERT_TRUE ASSERT_NULL ASSERT_TRUE ASSERT_FALSE |
| 356 | ASSERT_STREQ ASSERT_STRNE EXPECT_EQ EXPECT_NE EXPECT_LT |
| 357 | EXPECT_LE EXPECT_GT EXPECT_GE EXPECT_NULL EXPECT_TRUE |
| 358 | EXPECT_FALSE EXPECT_STREQ EXPECT_STRNE |