From ca0dfca5c9958c4aa4963f84c69bc425c078a970 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Tue, 27 Aug 2019 16:47:24 -0400 Subject: Temporarily disable systemd test for CGroups V2 Revert this one CGroups V2 support for systemd containers is added. Signed-off-by: Matthew Heon --- test/e2e/systemd_test.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go index 994e99cec..02778d493 100644 --- a/test/e2e/systemd_test.go +++ b/test/e2e/systemd_test.go @@ -8,6 +8,7 @@ import ( "strings" "time" + "github.com/containers/libpod/pkg/cgroups" . "github.com/containers/libpod/test/utils" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" @@ -81,6 +82,12 @@ WantedBy=multi-user.target }) It("podman run container with systemd PID1", func() { + cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() + Expect(err).To(BeNil()) + if cgroupsv2 { + Skip("systemd test does not work in cgroups V2 mode yet") + } + systemdImage := "fedora" pull := podmanTest.Podman([]string{"pull", systemdImage}) pull.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf