From fa02bac80953660924a2b00f1f9f8eea8569d717 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 21 Dec 2011 17:49:29 -0500 Subject: [PATCH] os/exec: put the print where it will help R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5501058 --- src/pkg/os/exec/exec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/os/exec/exec_test.go b/src/pkg/os/exec/exec_test.go index d7e61e73795..1e0ea977251 100644 --- a/src/pkg/os/exec/exec_test.go +++ b/src/pkg/os/exec/exec_test.go @@ -262,11 +262,11 @@ func TestHelperProcess(*testing.T) { f, err := os.Open(os.Args[0]) if err != nil { 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) } if got := f.Fd(); 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) } files = append(files, f)