Files
weave-scope/vendor/github.com/c9s/goprocinfo/linux/stat_test.go
2015-12-04 13:57:32 +00:00

13 lines
183 B
Go

package linux
import "testing"
func TestCPUStat(t *testing.T) {
stat, err := ReadStat("proc/stat")
if err != nil {
t.Fatal("stat read fail")
}
_ = stat
t.Logf("%+v", stat)
}