]> git.ipfire.org Git - thirdparty/systemd.git/commit
test: Make it possible to run the integration tests standalone 36868/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 26 Mar 2025 13:30:20 +0000 (14:30 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 27 Mar 2025 20:37:13 +0000 (21:37 +0100)
commitd9f48358bd177f4ac959444650a589056c3e569e
tree84dd6cb8f77cad73e8df7f0a1a00fa65aa48b5df
parentb4b1d94a094a5cc71e22e36e6cdbe008200c03b9
test: Make it possible to run the integration tests standalone

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-test/.
- All the installation logic is kept out of test/integration-test/ or
  any of its subdirectories and moved into test/meson.build instead.
- We add test/integration-test/standalone/meson.build to run the
  integration tests standalone. This meson file includes
  test/integration-test 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.
- TEST-64-UDEV-STORAGE and TEST-85-NETWORK are changed to generate separate
  units for each testcase to make them behave more like the other integration
  tests.
194 files changed:
.github/workflows/coverage.yml
.github/workflows/linter.yml
docs/ARCHITECTURE.md
docs/CODE_QUALITY.md
mkosi.images/build/mkosi.conf.d/opensuse/mkosi.build.chroot
mkosi.postinst.chroot
test/TEST-52-HONORFIRSTSHUTDOWN/meson.build [deleted file]
test/integration-tests/README.md [moved from test/README.md with 95% similarity]
test/integration-tests/TEST-01-BASIC/meson.build [moved from test/TEST-01-BASIC/meson.build with 100% similarity]
test/integration-tests/TEST-02-UNITTESTS/meson.build [moved from test/TEST-02-UNITTESTS/meson.build with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/always-activating.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/always-activating.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/always-activating.socket [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/always-activating.socket with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/counter.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/counter.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/counter.sh [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/counter.sh with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart-restartdirect.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart-restartdirect.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart-restartdirect.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart-restartdirect.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/fails-on-restart.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/hello-after-sleep.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/hello-after-sleep.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/hello.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/hello.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-and-pullin.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-and-pullin.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-indirect.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-indirect.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-only.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/propagatestopto-only.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/restart-on-failure.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/restart-on-failure.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-restart-direct.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-restart-direct.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-restart-normal.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-restart-normal.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-simple.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/sleep-infinity-simple.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/sleep.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/sleep.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart-restartdirect.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart-restartdirect.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart-restartdirect.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart-restartdirect.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.sh [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.sh with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.target [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/succeeds-on-restart.target with 100% similarity]
test/integration-tests/TEST-03-JOBS/TEST-03-JOBS.units/unstoppable.service [moved from test/TEST-03-JOBS/TEST-03-JOBS.units/unstoppable.service with 100% similarity]
test/integration-tests/TEST-03-JOBS/meson.build [moved from test/TEST-15-DROPIN/meson.build with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/delegated-cgroup-filtering.service [moved from test/TEST-04-JOURNAL/TEST-04-JOURNAL.units/delegated-cgroup-filtering.service with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/forever-print-hola.service [moved from test/TEST-04-JOURNAL/TEST-04-JOURNAL.units/forever-print-hola.service with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering.service [moved from test/TEST-04-JOURNAL/TEST-04-JOURNAL.units/logs-filtering.service with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/silent-success.service [moved from test/TEST-04-JOURNAL/TEST-04-JOURNAL.units/silent-success.service with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/TEST-04-JOURNAL.units/verbose-success.service [moved from test/TEST-04-JOURNAL/TEST-04-JOURNAL.units/verbose-success.service with 100% similarity]
test/integration-tests/TEST-04-JOURNAL/meson.build [moved from test/TEST-04-JOURNAL/meson.build with 78% similarity]
test/integration-tests/TEST-05-RLIMITS/meson.build [moved from test/TEST-05-RLIMITS/meson.build with 100% similarity]
test/integration-tests/TEST-06-SELINUX/TEST-06-SELINUX.units/hola.service [moved from test/TEST-06-SELINUX/TEST-06-SELINUX.units/hola.service with 100% similarity]
test/integration-tests/TEST-06-SELINUX/meson.build [moved from test/TEST-06-SELINUX/meson.build with 90% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.service [moved from test/TEST-07-PID1/TEST-07-PID1.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue14566-repro.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue14566-repro.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue14566-repro.sh [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue14566-repro.sh with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-1.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-1.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-2.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-2.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-3.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue16115-repro-3.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue2467.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue2467.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue2467.socket [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue2467.socket with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue2730-alias.mount [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue2730-alias.mount with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue2730.mount [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue2730.mount with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue27953.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue27953.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/issue3166-fail-on-restart.service [moved from test/TEST-07-PID1/TEST-07-PID1.units/issue3166-fail-on-restart.service with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/local-fs.target.wants/issue2730.mount [moved from test/TEST-07-PID1/TEST-07-PID1.units/local-fs.target.wants/issue2730.mount with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/pass-fds-to-exec-no.socket [moved from test/TEST-07-PID1/TEST-07-PID1.units/pass-fds-to-exec-no.socket with 100% similarity]
test/integration-tests/TEST-07-PID1/TEST-07-PID1.units/pass-fds-to-exec-yes.socket [moved from test/TEST-07-PID1/TEST-07-PID1.units/pass-fds-to-exec-yes.socket with 100% similarity]
test/integration-tests/TEST-07-PID1/meson.build [moved from test/TEST-07-PID1/meson.build with 76% similarity]
test/integration-tests/TEST-08-INITRD/meson.build [moved from test/TEST-08-INITRD/meson.build with 100% similarity]
test/integration-tests/TEST-09-REBOOT/meson.build [moved from test/TEST-09-REBOOT/meson.build with 100% similarity]
test/integration-tests/TEST-13-NSPAWN/meson.build [moved from test/TEST-13-NSPAWN/meson.build with 100% similarity]
test/integration-tests/TEST-15-DROPIN/meson.build [moved from test/TEST-19-CGROUP/meson.build with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/extend-timeout.sh [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/extend-timeout.sh with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-runtime.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-runtime.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-start.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-start.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-stop.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/fail-stop.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-all.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-all.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-runtime.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-runtime.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-start.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-start.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-stop.service [moved from test/TEST-16-EXTEND-TIMEOUT/TEST-16-EXTEND-TIMEOUT.units/success-stop.service with 100% similarity]
test/integration-tests/TEST-16-EXTEND-TIMEOUT/meson.build [moved from test/TEST-16-EXTEND-TIMEOUT/meson.build with 78% similarity]
test/integration-tests/TEST-17-UDEV/deny-list-ubuntu-ci-ppc64el [moved from test/TEST-17-UDEV/deny-list-ubuntu-ci-ppc64el with 100% similarity]
test/integration-tests/TEST-17-UDEV/meson.build [moved from test/TEST-17-UDEV/meson.build with 100% similarity]
test/integration-tests/TEST-18-FAILUREACTION/meson.build [moved from test/TEST-18-FAILUREACTION/meson.build with 100% similarity]
test/integration-tests/TEST-19-CGROUP/meson.build [moved from test/TEST-22-TMPFILES/meson.build with 100% similarity]
test/integration-tests/TEST-21-DFUZZER/meson.build [moved from test/TEST-21-DFUZZER/meson.build with 100% similarity]
test/integration-tests/TEST-22-TMPFILES/meson.build [moved from test/TEST-25-IMPORT/meson.build with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-binds-to.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-binds-to.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-bound-by.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-bound-by.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-fail.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-fail.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-1.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-1.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-2.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-2.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-3.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-3.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-4.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-4.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-5.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-5.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-6.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-6.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-7.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-7.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-8.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-8.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-9.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-joins-namespace-of-9.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-namespaced.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-namespaced.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-non-namespaced.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-non-namespaced.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-oneshot-restartforce.sh [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-oneshot-restartforce.sh with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-openfile-server.socket [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-openfile-server.socket with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-openfile-server@.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-openfile-server@.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-prop-stop-one.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-prop-stop-one.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-prop-stop-two.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-prop-stop-two.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-fail.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-fail.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-upheld.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-upheld.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-uphold.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-retry-uphold.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-short-lived.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-short-lived.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-specifier-j-depends-wants.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-specifier-j-depends-wants.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-specifier-j-wants.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-specifier-j-wants.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-success.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-success.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-upheldby-install.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-upheldby-install.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-uphold.service [moved from test/TEST-23-UNIT-FILE/TEST-23-UNIT-FILE.units/TEST-23-UNIT-FILE-uphold.service with 100% similarity]
test/integration-tests/TEST-23-UNIT-FILE/meson.build [moved from test/TEST-26-SYSTEMCTL/meson.build with 100% similarity]
test/integration-tests/TEST-24-CRYPTSETUP/keydev.repart/00-root.conf [moved from test/TEST-24-CRYPTSETUP/keydev.repart/00-root.conf with 100% similarity]
test/integration-tests/TEST-24-CRYPTSETUP/keyfile [moved from test/TEST-24-CRYPTSETUP/keyfile with 100% similarity]
test/integration-tests/TEST-24-CRYPTSETUP/meson.build [moved from test/TEST-24-CRYPTSETUP/meson.build with 100% similarity]
test/integration-tests/TEST-24-CRYPTSETUP/template.cfg [moved from test/TEST-24-CRYPTSETUP/template.cfg with 100% similarity]
test/integration-tests/TEST-25-IMPORT/meson.build [moved from test/TEST-34-DYNAMICUSERMIGRATE/meson.build with 100% similarity]
test/integration-tests/TEST-26-SYSTEMCTL/meson.build [moved from test/TEST-35-LOGIN/meson.build with 100% similarity]
test/integration-tests/TEST-29-PORTABLE/meson.build [moved from test/TEST-29-PORTABLE/meson.build with 100% similarity]
test/integration-tests/TEST-30-ONCLOCKCHANGE/TEST-30-ONCLOCKCHANGE.units/systemd-timedated.service.d/watchdog.conf [moved from test/TEST-30-ONCLOCKCHANGE/TEST-30-ONCLOCKCHANGE.units/systemd-timedated.service.d/watchdog.conf with 100% similarity]
test/integration-tests/TEST-30-ONCLOCKCHANGE/meson.build [moved from test/TEST-31-DEVICE-ENUMERATION/meson.build with 100% similarity]
test/integration-tests/TEST-31-DEVICE-ENUMERATION/meson.build [moved from test/TEST-36-NUMAPOLICY/meson.build with 100% similarity]
test/integration-tests/TEST-32-OOMPOLICY/meson.build [moved from test/TEST-32-OOMPOLICY/meson.build with 100% similarity]
test/integration-tests/TEST-34-DYNAMICUSERMIGRATE/meson.build [moved from test/TEST-43-PRIVATEUSER-UNPRIV/meson.build with 100% similarity]
test/integration-tests/TEST-35-LOGIN/meson.build [moved from test/TEST-45-TIMEDATE/meson.build with 100% similarity]
test/integration-tests/TEST-36-NUMAPOLICY/meson.build [moved from test/TEST-38-FREEZER/meson.build with 100% similarity]
test/integration-tests/TEST-38-FREEZER/meson.build [moved from test/TEST-50-DISSECT/meson.build with 100% similarity]
test/integration-tests/TEST-43-PRIVATEUSER-UNPRIV/meson.build [moved from test/TEST-46-HOMED/meson.build with 100% similarity]
test/integration-tests/TEST-44-LOG-NAMESPACE/TEST-44-LOG-NAMESPACE.service [moved from test/TEST-44-LOG-NAMESPACE/TEST-44-LOG-NAMESPACE.service with 100% similarity]
test/integration-tests/TEST-44-LOG-NAMESPACE/meson.build [moved from test/TEST-44-LOG-NAMESPACE/meson.build with 100% similarity]
test/integration-tests/TEST-45-TIMEDATE/meson.build [moved from test/TEST-60-MOUNT-RATELIMIT/meson.build with 100% similarity]
test/integration-tests/TEST-46-HOMED/meson.build [moved from test/TEST-65-ANALYZE/meson.build with 100% similarity]
test/integration-tests/TEST-50-DISSECT/meson.build [moved from test/TEST-58-REPART/meson.build with 100% similarity]
test/integration-tests/TEST-52-HONORFIRSTSHUTDOWN/TEST-52-HONORFIRSTSHUTDOWN.units/test-honor-first-shutdown.service [moved from test/TEST-52-HONORFIRSTSHUTDOWN/TEST-52-HONORFIRSTSHUTDOWN.units/test-honor-first-shutdown.service with 100% similarity]
test/integration-tests/TEST-52-HONORFIRSTSHUTDOWN/TEST-52-HONORFIRSTSHUTDOWN.units/test-honor-first-shutdown.sh [moved from test/TEST-52-HONORFIRSTSHUTDOWN/TEST-52-HONORFIRSTSHUTDOWN.units/test-honor-first-shutdown.sh with 100% similarity]
test/integration-tests/TEST-52-HONORFIRSTSHUTDOWN/meson.build [moved from test/TEST-68-PROPAGATE-EXIT-STATUS/meson.build with 100% similarity]
test/integration-tests/TEST-53-ISSUE-16347/meson.build [moved from test/TEST-53-ISSUE-16347/meson.build with 100% similarity]
test/integration-tests/TEST-54-CREDS/meson.build [moved from test/TEST-54-CREDS/meson.build with 100% similarity]
test/integration-tests/TEST-54-CREDS/systemd.extra-unit.my-service.service [moved from test/TEST-54-CREDS/systemd.extra-unit.my-service.service with 100% similarity]
test/integration-tests/TEST-54-CREDS/systemd.unit-dropin.my-service.service [moved from test/TEST-54-CREDS/systemd.unit-dropin.my-service.service with 100% similarity]
test/integration-tests/TEST-54-CREDS/systemd.unit-dropin.my-service.service~30-named.service [moved from test/TEST-54-CREDS/systemd.unit-dropin.my-service.service~30-named.service with 100% similarity]
test/integration-tests/TEST-55-OOMD/meson.build [moved from test/TEST-55-OOMD/meson.build with 100% similarity]
test/integration-tests/TEST-55-OOMD/systemd.unit-dropin.init.scope [moved from test/TEST-55-OOMD/systemd.unit-dropin.init.scope with 100% similarity]
test/integration-tests/TEST-58-REPART/meson.build [moved from test/TEST-62-RESTRICT-IFACES/meson.build with 100% similarity]
test/integration-tests/TEST-59-RELOADING-RESTART/meson.build [moved from test/TEST-59-RELOADING-RESTART/meson.build with 100% similarity]
test/integration-tests/TEST-60-MOUNT-RATELIMIT/meson.build [moved from test/TEST-75-RESOLVED/meson.build with 100% similarity]
test/integration-tests/TEST-62-RESTRICT-IFACES/meson.build [moved from test/TEST-66-DEVICE-ISOLATION/meson.build with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-glob.path [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-glob.path with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-glob.service [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-glob.service with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577-dep.service [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577-dep.service with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577.path [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577.path with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577.service [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-issue-24577.service with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-pr-30768.path [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-pr-30768.path with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63-pr-30768.service [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63-pr-30768.service with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63.path [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63.path with 100% similarity]
test/integration-tests/TEST-63-PATH/TEST-63-PATH.units/test63.service [moved from test/TEST-63-PATH/TEST-63-PATH.units/test63.service with 100% similarity]
test/integration-tests/TEST-63-PATH/meson.build [moved from test/TEST-76-SYSCTL/meson.build with 100% similarity]
test/integration-tests/TEST-64-UDEV-STORAGE/deny-list-ubuntu-ci [moved from test/TEST-64-UDEV-STORAGE/deny-list-ubuntu-ci with 100% similarity]
test/integration-tests/TEST-64-UDEV-STORAGE/meson.build [moved from test/TEST-64-UDEV-STORAGE/meson.build with 58% similarity]
test/integration-tests/TEST-65-ANALYZE/meson.build [moved from test/TEST-78-SIGQUEUE/meson.build with 100% similarity]
test/integration-tests/TEST-66-DEVICE-ISOLATION/meson.build [moved from test/TEST-67-INTEGRITY/meson.build with 100% similarity]
test/integration-tests/TEST-67-INTEGRITY/meson.build [moved from test/TEST-72-SYSUPDATE/meson.build with 100% similarity]
test/integration-tests/TEST-68-PROPAGATE-EXIT-STATUS/meson.build [moved from test/TEST-81-GENERATORS/meson.build with 100% similarity]
test/integration-tests/TEST-69-SHUTDOWN/TEST-69-SHUTDOWN.service [moved from test/TEST-69-SHUTDOWN/TEST-69-SHUTDOWN.service with 100% similarity]
test/integration-tests/TEST-69-SHUTDOWN/meson.build [moved from test/TEST-69-SHUTDOWN/meson.build with 100% similarity]
test/integration-tests/TEST-70-TPM2/meson.build [moved from test/TEST-70-TPM2/meson.build with 100% similarity]
test/integration-tests/TEST-71-HOSTNAME/meson.build [moved from test/TEST-71-HOSTNAME/meson.build with 100% similarity]
test/integration-tests/TEST-72-SYSUPDATE/meson.build [moved from test/TEST-83-BTRFS/meson.build with 100% similarity]
test/integration-tests/TEST-73-LOCALE/meson.build [moved from test/TEST-73-LOCALE/meson.build with 100% similarity]
test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/realtime-test.service [moved from test/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/realtime-test.service with 100% similarity]
test/integration-tests/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/realtime-test.timer [moved from test/TEST-74-AUX-UTILS/TEST-74-AUX-UTILS.units/realtime-test.timer with 100% similarity]
test/integration-tests/TEST-74-AUX-UTILS/meson.build [moved from test/TEST-74-AUX-UTILS/meson.build with 77% similarity]
test/integration-tests/TEST-75-RESOLVED/meson.build [moved from test/TEST-03-JOBS/meson.build with 71% similarity]
test/integration-tests/TEST-76-SYSCTL/meson.build [moved from test/TEST-63-PATH/meson.build with 71% similarity]
test/integration-tests/TEST-78-SIGQUEUE/meson.build [moved from test/TEST-23-UNIT-FILE/meson.build with 70% similarity]
test/integration-tests/TEST-79-MEMPRESS/meson.build [moved from test/TEST-79-MEMPRESS/meson.build with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-nopin.service [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-nopin.service with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.service [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.service with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.sh [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.sh with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.target [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/fdstore-pin.target with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/notify.service [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/notify.service with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/test.sh [moved from test/TEST-80-NOTIFYACCESS/TEST-80-NOTIFYACCESS.units/test.sh with 100% similarity]
test/integration-tests/TEST-80-NOTIFYACCESS/meson.build [moved from test/TEST-80-NOTIFYACCESS/meson.build with 69% similarity]
test/integration-tests/TEST-81-GENERATORS/meson.build [new file with mode: 0644]
test/integration-tests/TEST-82-SOFTREBOOT/TEST-82-SOFTREBOOT.service [moved from test/TEST-82-SOFTREBOOT/TEST-82-SOFTREBOOT.service with 100% similarity]
test/integration-tests/TEST-82-SOFTREBOOT/meson.build [moved from test/TEST-82-SOFTREBOOT/meson.build with 100% similarity]
test/integration-tests/TEST-83-BTRFS/meson.build [moved from test/TEST-84-STORAGETM/meson.build with 100% similarity]
test/integration-tests/TEST-84-STORAGETM/meson.build [moved from test/TEST-30-ONCLOCKCHANGE/meson.build with 72% similarity]
test/integration-tests/TEST-85-NETWORK/meson.build [moved from test/TEST-85-NETWORK/meson.build with 64% similarity]
test/integration-tests/TEST-86-MULTI-PROFILE-UKI/meson.build [moved from test/TEST-86-MULTI-PROFILE-UKI/meson.build with 100% similarity]
test/integration-tests/TEST-87-AUX-UTILS-VM/meson.build [moved from test/TEST-87-AUX-UTILS-VM/meson.build with 100% similarity]
test/integration-tests/integration-test-wrapper.py [moved from test/integration-test-wrapper.py with 100% similarity]
test/integration-tests/integration-tests [new symlink]
test/integration-tests/meson.build [new file with mode: 0644]
test/integration-tests/standalone/meson.build [new file with mode: 0644]
test/meson.build
test/test.service.in