Home | History | Annotate | Download | only in exec

Lines Matching full:lsof

298 		open, lsof := numOpenFDS(t)
303 // proc filesystem (as used by lsof). It seems to only
309 t.Errorf("leaked %d fds; want ~0; have:\n%s\noriginally:\n%s", fdGrowth, lsof, lsof0)
315 func numOpenFDS(t *testing.T) (n int, lsof []byte) {
317 // Android's stock lsof does not obey the -p option,
322 lsof, err := exec.Command("lsof", "-b", "-n", "-p", strconv.Itoa(os.Getpid())).Output()
324 t.Skip("skipping test; error finding or running lsof")
326 return bytes.Count(lsof, []byte("\n")), lsof
329 func numOpenFDsAndroid(t *testing.T) (n int, lsof []byte) {
330 raw, err := exec.Command("lsof").Output()
332 t.Skip("skipping test; error finding or running lsof")
351 lsof = append(lsof, line...)
355 lsof = append(lsof, '\n')
356 lsof = append(lsof, line...)
360 t.Fatal("error processing lsof output: unexpected header format")
363 t.Fatalf("error processing lsof output: %v", err)
365 return bytes.Count(lsof, []byte("\n")), lsof
631 ofcmd := "lsof"