//go:build linux package stats import "testing" func TestParseKB(t *testing.T) { if got := parseKB("MemTotal: 16384000 kB"); got != 16384000 { t.Fatalf("got %d", got) } if parseKB("short") != 0 { t.Fatal("invalid line should return 0") } }