You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
999 B
30 lines
999 B
From 523e72e97d7c945114b54b726eaab0d379fb35fb Mon Sep 17 00:00:00 2001 |
|
From: Frantisek Sumsal <frantisek@sumsal.cz> |
|
Date: Tue, 1 Feb 2022 20:25:00 +0100 |
|
Subject: [PATCH] test: require unified cgroup hierarchy for TEST-56 |
|
|
|
since cgroup empty notifications are unreliable in legacy cgroups. |
|
|
|
See: systemd/systemd#22320 |
|
Complements: systemd/systemd#22344 |
|
(cherry picked from commit e2620820188428de7086f5e8ac41305177f70954) |
|
|
|
Related: #2047768 |
|
--- |
|
test/TEST-56-EXIT-TYPE/test.sh | 5 +++++ |
|
1 file changed, 5 insertions(+) |
|
|
|
diff --git a/test/TEST-56-EXIT-TYPE/test.sh b/test/TEST-56-EXIT-TYPE/test.sh |
|
index 0f84dca1ba..37475e817e 100755 |
|
--- a/test/TEST-56-EXIT-TYPE/test.sh |
|
+++ b/test/TEST-56-EXIT-TYPE/test.sh |
|
@@ -6,4 +6,9 @@ TEST_DESCRIPTION="test ExitType=cgroup" |
|
# shellcheck source=test/test-functions |
|
. "${TEST_BASE_DIR:?}/test-functions" |
|
|
|
+if [[ "$(get_cgroup_hierarchy)" != unified ]]; then |
|
+ echo "This test requires unified cgroup hierarchy, skipping..." |
|
+ exit 0 |
|
+fi |
|
+ |
|
do_test "$@"
|
|
|