diff --git a/libcontainer/integration/exec_test.go b/libcontainer/integration/exec_test.go index ada513b5..923c5797 100644 --- a/libcontainer/integration/exec_test.go +++ b/libcontainer/integration/exec_test.go @@ -207,9 +207,6 @@ func TestEnter(t *testing.T) { if testing.Short() { return } - if cgroups.IsCgroup2UnifiedMode() { - t.Skip("cgroup v2 is not supported") - } rootfs, err := newRootfs() ok(t, err) @@ -516,9 +513,6 @@ func testFreeze(t *testing.T, systemd bool) { if testing.Short() { return } - if cgroups.IsCgroup2UnifiedMode() { - t.Skip("cgroup v2 is not supported") - } rootfs, err := newRootfs() ok(t, err) @@ -574,7 +568,7 @@ func testCpuShares(t *testing.T, systemd bool) { return } if cgroups.IsCgroup2UnifiedMode() { - t.Skip("cgroup v2 is not supported") + t.Skip("cgroup v2 does not support CpuShares") } rootfs, err := newRootfs() @@ -608,9 +602,6 @@ func testPids(t *testing.T, systemd bool) { if testing.Short() { return } - if cgroups.IsCgroup2UnifiedMode() { - t.Skip("cgroup v2 is not supported") - } rootfs, err := newRootfs() ok(t, err) @@ -695,7 +686,7 @@ func testRunWithKernelMemory(t *testing.T, systemd bool) { return } if cgroups.IsCgroup2UnifiedMode() { - t.Skip("cgroup v2 is not supported") + t.Skip("cgroup v2 does not support kernel memory limit") } rootfs, err := newRootfs()