mirror of
https://github.com/golang/go
synced 2024-11-22 04:24:39 -07:00
os/exec: put the print where it will help
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5501058
This commit is contained in:
parent
03805054e3
commit
fa02bac809
@ -262,11 +262,11 @@ func TestHelperProcess(*testing.T) {
|
|||||||
f, err := os.Open(os.Args[0])
|
f, err := os.Open(os.Args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("error opening file with expected fd %d: %v", wantfd, err)
|
fmt.Printf("error opening file with expected fd %d: %v", wantfd, err)
|
||||||
fmt.Println(Command("lsof", "-p", fmt.Sprint(os.Getpid())).CombinedOutput())
|
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
if got := f.Fd(); got != wantfd {
|
if got := f.Fd(); got != wantfd {
|
||||||
fmt.Printf("leaked parent file. fd = %d; want %d", got, wantfd)
|
fmt.Printf("leaked parent file. fd = %d; want %d", got, wantfd)
|
||||||
|
fmt.Println(Command("lsof", "-p", fmt.Sprint(os.Getpid())).CombinedOutput())
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
files = append(files, f)
|
files = append(files, f)
|
||||||
|
Loading…
Reference in New Issue
Block a user