Commit 2c14dbe4 authored by Russ Cox's avatar Russ Cox

crypto/tls: print unexpected error in test

Maybe will help us understand Solaris build failure.

TBR=aram
CC=golang-codereviews
https://golang.org/cl/139290043
parent fb818eab
...@@ -205,7 +205,7 @@ func (test *clientTest) run(t *testing.T, write bool) { ...@@ -205,7 +205,7 @@ func (test *clientTest) run(t *testing.T, write bool) {
if !write { if !write {
flows, err := test.loadData() flows, err := test.loadData()
if err != nil { if err != nil {
t.Fatalf("%s: failed to load data from %s", test.name, test.dataPath()) t.Fatalf("%s: failed to load data from %s: %v", test.name, test.dataPath(), err)
} }
for i, b := range flows { for i, b := range flows {
if i%2 == 1 { if i%2 == 1 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment