reg/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_test.go

19 lines
236 B
Go
Raw Normal View History

// +build linux
package cgroups
import (
"testing"
)
func TestParseCgroups(t *testing.T) {
cgroups, err := ParseCgroupFile("/proc/self/cgroup")
if err != nil {
t.Fatal(err)
}
if _, ok := cgroups["cpu"]; !ok {
t.Fail()
}
}