From: Daan De Meyer Date: Thu, 27 Mar 2025 20:38:00 +0000 (+0100) Subject: test: Make it possible to run the integration tests standalone (#36868) X-Git-Tag: v258-rc1~999 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e213ecd4847ea03ec62cb9185e15e43e5a4eb7c5;p=thirdparty%2Fsystemd.git test: Make it possible to run the integration tests standalone (#36868) Currently, to run the integration tests, it's still necessary to install various other build tools besides meson: A compiler, gperf, libcap, ... which we want to avoid in CI systems where we receive prebuilt systemd packages and only want to test them. Examples are Debian's autopkgtest CI and Fedora CI. Let's make it possible for these systems to run the integration tests without having to install any other build dependency besides meson by extracting the logic required to run the integration tests with meson into a separate subdirectory and adding a standalone top-level meson.build file which can be used to configure a meson tree with as its only purpose running the integration tests. Practically, we do the following: - all the integration test directories and integration-test-wrapper.py are moved from test/ to test/integration-tests/. - All the installation logic is kept out of test/integration-tests/ or any of its subdirectories and moved into test/meson.build instead. - We add test/integration-tests/standalone/meson.build to run the integration tests standalone. This meson file includes test/integration-tests via a cute symlink hack to trick meson into including a parent directory with subdir(). - Documentation is included on how to use the new standalone mode. --- e213ecd4847ea03ec62cb9185e15e43e5a4eb7c5