artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c02f8b
)
Now that tls_close() is more robust, consider a failure to be fatal.
author
jsing
<jsing@openbsd.org>
Wed, 15 Apr 2015 16:09:29 +0000
(16:09 +0000)
committer
jsing
<jsing@openbsd.org>
Wed, 15 Apr 2015 16:09:29 +0000
(16:09 +0000)
regress/lib/libtls/gotls/tls_test.go
patch
|
blob
|
history
diff --git
a/regress/lib/libtls/gotls/tls_test.go
b/regress/lib/libtls/gotls/tls_test.go
index
f709fcb
..
2afcf93
100644
(file)
--- a/
regress/lib/libtls/gotls/tls_test.go
+++ b/
regress/lib/libtls/gotls/tls_test.go
@@
-77,7
+77,7
@@
func TestTLSBasic(t *testing.T) {
}
defer func() {
if err := tls.Close(); err != nil {
- t.
Log
f("Close failed: %v", err)
+ t.
Fatal
f("Close failed: %v", err)
}
}()