Improve custom cgroup test

Ref: #3272

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2019-07-30 19:45:30 +00:00
parent 4195136eea
commit f68186e107

View File

@ -241,8 +241,16 @@ version = 1
defer cleanup()
for k, v := range cgroupPath {
if k == "rmda" {
paths := []string{
"devices",
"memory",
"cpu",
"blkio",
}
for _, p := range paths {
v := cgroupPath[p]
if v == "" {
continue
}
path := filepath.Join(v, customCgroup)