Merge pull request #9487 from giuseppe/split-test-named-hierarchies
test: ignore named hierarchies for cgroups=split
This commit is contained in:
commit
9ec8106841
|
|
@ -1228,9 +1228,10 @@ USER mail`
|
||||||
for _, line := range lines {
|
for _, line := range lines {
|
||||||
parts := strings.SplitN(line, ":", 3)
|
parts := strings.SplitN(line, ":", 3)
|
||||||
if !CGROUPSV2 {
|
if !CGROUPSV2 {
|
||||||
// ignore unified on cgroup v1
|
// ignore unified on cgroup v1.
|
||||||
// both runc and crun do not set it.
|
// 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
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue