mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
testing: use runtime/debug to format panics
Sorry, Mercurial failed me. TBR=r, dsymonds CC=golang-dev https://golang.org/cl/5649080
This commit is contained in:
parent
f735d2d9d3
commit
8bcfad269e
1 changed files with 4 additions and 6 deletions
|
|
@ -248,12 +248,10 @@ func tRunner(t *T, test *InternalTest) {
|
|||
// a call to runtime.Goexit, record the duration and send
|
||||
// a signal saying that the test is done.
|
||||
defer func() {
|
||||
if false {
|
||||
// Log and recover from panic instead of aborting binary.
|
||||
if err := recover(); err != nil {
|
||||
t.failed = true
|
||||
t.Logf("%s\n%s", err, debug.Stack())
|
||||
}
|
||||
// Log and recover from panic instead of aborting binary.
|
||||
if err := recover(); err != nil {
|
||||
t.failed = true
|
||||
t.Logf("%s\n%s", err, debug.Stack())
|
||||
}
|
||||
|
||||
t.duration = time.Now().Sub(t.start)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue