1
0
mirror of https://github.com/golang/go synced 2024-11-23 22:30:05 -07:00

runtime: print more information when testCgoPprof fails

Change-Id: I820dae0303959096f0c434b7e69ecb3bf070df09
Reviewed-on: https://go-review.googlesource.com/c/go/+/172197
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2019-04-15 17:55:58 -07:00
parent a337cb2bf0
commit f248cd3a07

View File

@ -281,7 +281,7 @@ func testCgoPprof(t *testing.T, buildArg, runArg, top, bottom string) {
// See Issue 18243 and Issue 19938.
t.Skipf("Skipping failing test on Alpine (golang.org/issue/18243). Ignoring error: %v", err)
}
t.Fatal(err)
t.Fatalf("%s\n\n%v", got, err)
}
fn := strings.TrimSpace(string(got))
defer os.Remove(fn)