kmod/testsuite
Lucas De Marchi b5a2cd070d Use SPDX header for license
Drop the lengthy license from each file and just use SPDX like most
projects nowadays. This doesn't have any change to license, just how
they are recorded in each file.

This follows the kernel approach: header files use '/*' for comments
while .c files use '//'. For .m4, use "#".

Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Link: https://lore.kernel.org/r/20240723185921.1005569-2-lucas.de.marchi@gmail.com
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
2024-07-26 13:41:56 -05:00
..
module-playground testsuite: add tests for weak dependencies 2024-06-14 14:16:17 -05:00
rootfs-pristine testsuite: add tests for weak dependencies 2024-06-14 14:16:17 -05:00
.gitignore testsuite: add tests for weak dependencies 2024-06-14 14:16:17 -05:00
COPYING testsuite: re-license under LGPL 2012-07-10 10:31:57 -03:00
delete_module.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
init_module.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
Makefile build-sys: add small redirecting Makefiles 2014-03-06 01:59:58 -03:00
path.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
README Remove bootstrap* scripts 2018-12-17 09:52:05 -08:00
setup-rootfs.sh testsuite: add tests for weak dependencies 2024-06-14 14:16:17 -05:00
stripped-module.h Use #pragma once instead of #ifndef 2012-07-18 10:31:50 -03:00
test-array.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-blacklist.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-dependencies.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-depmod.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-hash.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-init.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-initstate.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-list.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-loaded.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-modinfo.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-modprobe.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-new-module.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-scratchbuf.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-strbuf.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-testsuite.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-user.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
test-util.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
testsuite.c Use SPDX header for license 2024-07-26 13:41:56 -05:00
testsuite.h Use SPDX header for license 2024-07-26 13:41:56 -05:00
uname.c Use SPDX header for license 2024-07-26 13:41:56 -05:00

testsuite

OVERVIEW
========

Kmod's testsuite was designed to automate the process of running tests with
different scenarios, configurations and architectures. The idea is that once we
received a bug report, we reproduce it using the testsuite so we avoid
recurring on the same bug in future.


FEATURES
========

- Isolate each test by running them in separate processes;
- Exec a binary, so we can test the tools and not only the lib API
- Fake accesses to filesystem so we can provide a test rootfs with all the
  configuration, indexes, etc that test needs to be executed.
- Fake calls to init_module(), delete_module() and uname(), so we don't have to
  run tests as root and figure out how to deal with different architectures.

HOW TO ADD A TEST
=================

The simplest way to add a test is to copy and paste one already there. Most of
the options you can have are covered by another tests. This is what you need to
pay attention when writing a test:

1 - Look at testsuite.h, struct test, to see all the options available.

2 - Use TESTSUITE_MAIN and DEFINE_TEST to add new tests. Don't forget to fill
    its description.

3 - If you want testsuite to compare the stdout/stderr of your tests in order
    to check if it worked or not, fill in output.{stderr,stdout} the file with
    the expected output. Bear in mind the same file is used for all
    architectures, so don't print arch-dependent content if you are comparing
    the output.

4 - Fill in the config vector. Setting any of these configuration will make
    testsuite to export LD_PRELOAD with the necessary override libs before
    executing the test. If you are not exec'ing an external binary, you need to
    pass "need_spawn = true" below, otherwise it will not work (LD_PRELOAD is
    only applied when exec'ing a binary). See each config description in
    testsuite.h

5 - need_spawn: if testsuite will exec itself before running a test

6 - expected_fail: if that test is expected to fail, i.e. the return code is
    expected not to be 0.

7 - The rootfs is populated by copying the entire contents of rootfs-pristine
    then running populate-modules.sh to copy generated modules from
    module-playground. Update the latter script to include any modules your
    test need.

8 - Tests can be run individually, outside of 'make check'. strace and gdb work
    too, as long as you tell them to operate on child process.

9 - Make sure test passes when using "default" build flags, i.e. by running
    'autogen.sh c'