diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-21 16:04:19 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-21 19:23:24 -0400 |
commit | 65e1638f9bba1bd16dfcef5bb897cf1c1bc4889f (patch) | |
tree | 6254e28b9c598a8fb81d4eb9b9823b09a1d4580c /test/e2e/common_test.go | |
parent | e5b3563a897395030c5714ac014bbad79f24ede9 (diff) | |
download | podman-65e1638f9bba1bd16dfcef5bb897cf1c1bc4889f.tar.gz podman-65e1638f9bba1bd16dfcef5bb897cf1c1bc4889f.tar.bz2 podman-65e1638f9bba1bd16dfcef5bb897cf1c1bc4889f.zip |
Enable a bunch of remote tests
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index aa0e9635a..f475a927c 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -14,6 +14,7 @@ import ( "time" "github.com/containers/libpod/v2/libpod/define" + "github.com/containers/libpod/v2/pkg/cgroups" "github.com/containers/libpod/v2/pkg/inspect" "github.com/containers/libpod/v2/pkg/rootless" . "github.com/containers/libpod/v2/test/utils" @@ -599,3 +600,21 @@ func SkipIfNotFedora() { func isRootless() bool { return os.Geteuid() != 0 } + +func SkipIfCgroupV1() { + cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() + Expect(err).To(BeNil()) + + if !cgroupsv2 { + Skip("Skip on systems with cgroup V1 systems") + } +} + +func SkipIfCgroupV2() { + cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() + Expect(err).To(BeNil()) + + if cgroupsv2 { + Skip("Skip on systems with cgroup V2 systems") + } +} |