summaryrefslogtreecommitdiff
path: root/test/e2e/systemd_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-06-05 14:03:20 -0400
committerGitHub <noreply@github.com>2020-06-05 14:03:20 -0400
commit723e8234393fba230961bc1214a73ba5d01bbfe1 (patch)
tree0195dcfa6421bbb079e2b75918250eb5e7d4a2ae /test/e2e/systemd_test.go
parentc448c03269139dabf6f6fa7ff0fedb2291018b2a (diff)
parentc8f57b71a4255938efa23fec37c59181c1c657e4 (diff)
downloadpodman-723e8234393fba230961bc1214a73ba5d01bbfe1.tar.gz
podman-723e8234393fba230961bc1214a73ba5d01bbfe1.tar.bz2
podman-723e8234393fba230961bc1214a73ba5d01bbfe1.zip
Merge pull request #6504 from rhatdan/systemd
Fix handling of systemd.
Diffstat (limited to 'test/e2e/systemd_test.go')
-rw-r--r--test/e2e/systemd_test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go
index 1275670eb..a35e5113a 100644
--- a/test/e2e/systemd_test.go
+++ b/test/e2e/systemd_test.go
@@ -8,7 +8,6 @@ import (
"strings"
"time"
- "github.com/containers/libpod/pkg/cgroups"
. "github.com/containers/libpod/test/utils"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@@ -82,13 +81,6 @@ WantedBy=multi-user.target
})
It("podman run container with systemd PID1", func() {
- cgroupsv2, err := cgroups.IsCgroup2UnifiedMode()
- Expect(err).To(BeNil())
- if cgroupsv2 {
- // TODO: Find a way to enable this for v2
- Skip("systemd test does not work in cgroups V2 mode yet")
- }
-
systemdImage := "fedora"
pull := podmanTest.Podman([]string{"pull", systemdImage})
pull.WaitWithDefaultTimeout()