1
0
mirror of https://github.com/golang/go synced 2024-11-26 11:38:01 -07:00

testing: fix minor bug with mutex profile error message

Change-Id: I92b7a44476cfd9e2f099477b9d7903bbaa2fd8da
Reviewed-on: https://go-review.googlesource.com/c/go/+/173720
Run-TryBot: Caleb Spare <cespare@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Caleb Spare 2019-04-24 12:09:15 -07:00 committed by Brad Fitzpatrick
parent d152ff286f
commit 562b7c27ec

View File

@ -1287,7 +1287,7 @@ func (m *M) writeProfiles() {
os.Exit(2) os.Exit(2)
} }
if err = m.deps.WriteProfileTo("mutex", f, 0); err != nil { if err = m.deps.WriteProfileTo("mutex", f, 0); err != nil {
fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *blockProfile, err) fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *mutexProfile, err)
os.Exit(2) os.Exit(2)
} }
f.Close() f.Close()