diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-16 10:39:13 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-11 14:43:57 +0000 |
commit | fee9ec18584bcc31ce4889bdbda2fc2a829eaf5f (patch) | |
tree | 0a6f1ee2b2a715aa65dab746825d50764ffd30a7 /test | |
parent | 21c121941510426083f322f60562f1cb19a1fb46 (diff) | |
download | podman-fee9ec18584bcc31ce4889bdbda2fc2a829eaf5f.tar.gz podman-fee9ec18584bcc31ce4889bdbda2fc2a829eaf5f.tar.bz2 podman-fee9ec18584bcc31ce4889bdbda2fc2a829eaf5f.zip |
Skip systemd-style CGroups test
Until we get Systemd cgroup manager working, this will
cause a validation error.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #507
Approved by: baude
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_cgroup_parent_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/run_cgroup_parent_test.go b/test/e2e/run_cgroup_parent_test.go index 7647eb6d4..55dda06ff 100644 --- a/test/e2e/run_cgroup_parent_test.go +++ b/test/e2e/run_cgroup_parent_test.go @@ -48,6 +48,7 @@ var _ = Describe("Podman run with --cgroup-parent", func() { }) Specify("valid --cgroup-parent using slice", func() { + Skip("Requires Systemd cgroup manager support") cgroup := "aaaa.slice" run := podmanTest.Podman([]string{"run", "--cgroup-parent", cgroup, fedoraMinimal, "cat", "/proc/1/cgroup"}) run.WaitWithDefaultTimeout() |