diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-02-23 14:09:10 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-02-23 14:09:17 +0100 |
commit | 3947feb4b0da9c246b1658c48c5a365a14dac021 (patch) | |
tree | f3340b4697b8dbc8b8237c1218316ebd9cafb5d0 /test | |
parent | 96fc9d983e0fc5bae48c3cec3acce86cdb6e1059 (diff) | |
download | podman-3947feb4b0da9c246b1658c48c5a365a14dac021.tar.gz podman-3947feb4b0da9c246b1658c48c5a365a14dac021.tar.bz2 podman-3947feb4b0da9c246b1658c48c5a365a14dac021.zip |
test: ignore named hierarchies for cgroups=split
ignore named hierarchies for the --cgroups=split test as crun does not
set it.
Closes: https://github.com/containers/podman/pull/9302#issuecomment-784157272
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index c28086fe8..f0ba9d1d9 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -1228,9 +1228,10 @@ USER mail` for _, line := range lines { parts := strings.SplitN(line, ":", 3) if !CGROUPSV2 { - // ignore unified on cgroup v1 + // ignore unified on cgroup v1. // both runc and crun do not set it. - if parts[1] == "" { + // crun does not set named hierarchies. + if parts[1] == "" || strings.Contains(parts[1], "name=") { continue } } |