diff options
author | Luca Boccassi <luca.boccassi@gmail.com> | 2024-12-10 13:13:06 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-12-10 16:18:39 +0100 |
commit | ab828def6de85c93eef3b4c07b04fddf41d3a44c (patch) | |
tree | 9c28f5c52347be4059452576faaf38607341a67b | |
parent | test: add TEST_SKIP_SUBTESTS/TEST_SKIP_TESTCASES (diff) | |
download | systemd-ab828def6de85c93eef3b4c07b04fddf41d3a44c.tar.xz systemd-ab828def6de85c93eef3b4c07b04fddf41d3a44c.zip |
test: skip TEST-13-NSPAWN.nspawn/machined, TEST-86-MULTI-PROFILE-UKI and TEST-07-PID1.private-pids.sh
These new tests are flaky, so disable them temporarily, until after
the release, to avoid pushing out new flakiness to consumers. They
will be re-enabled immediately after.
-rw-r--r-- | test/TEST-86-MULTI-PROFILE-UKI/meson.build | 1 | ||||
-rwxr-xr-x | test/units/TEST-07-PID1.sh | 1 | ||||
-rwxr-xr-x | test/units/TEST-13-NSPAWN.sh | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/test/TEST-86-MULTI-PROFILE-UKI/meson.build b/test/TEST-86-MULTI-PROFILE-UKI/meson.build index 53042884cc..10d5957d8f 100644 --- a/test/TEST-86-MULTI-PROFILE-UKI/meson.build +++ b/test/TEST-86-MULTI-PROFILE-UKI/meson.build @@ -6,5 +6,6 @@ integration_tests += [ 'storage' : 'persistent', 'vm' : true, 'firmware' : 'auto', + 'enabled' : false, }, ] diff --git a/test/units/TEST-07-PID1.sh b/test/units/TEST-07-PID1.sh index 873d638f76..f967588ba1 100755 --- a/test/units/TEST-07-PID1.sh +++ b/test/units/TEST-07-PID1.sh @@ -10,6 +10,7 @@ set -o pipefail # See TEST-07-PID1/test.sh for the first "half" of the test mountpoint /issue2730 +export TEST_SKIP_SUBTESTS="private-pids" run_subtests touch /testok diff --git a/test/units/TEST-13-NSPAWN.sh b/test/units/TEST-13-NSPAWN.sh index dd7f274631..b79a037e7e 100755 --- a/test/units/TEST-13-NSPAWN.sh +++ b/test/units/TEST-13-NSPAWN.sh @@ -13,6 +13,7 @@ fi # shellcheck source=test/units/test-control.sh . "$(dirname "$0")"/test-control.sh +export TEST_SKIP_SUBTESTS="nspawn machined" run_subtests touch /testok |