aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/server_test.go29
1 files changed, 2 insertions, 27 deletions
diff --git a/src/net/server_test.go b/src/net/server_test.go
index 33d33b0337..ae1c1619ed 100644
--- a/src/net/server_test.go
+++ b/src/net/server_test.go
@@ -7,9 +7,7 @@
package net
import (
- "fmt"
"os"
- "reflect"
"testing"
)
@@ -190,32 +188,9 @@ func TestUnixAndUnixpacketServer(t *testing.T) {
t.Fatal(err)
}
- // We really just want to defer os.Remove(c.LocalAddr().String()) here,
- // but sometimes that panics due to a nil dereference on the
- // solaris-amd64-oraclerel builder (https://golang.org/issue/34611).
- // The source of the nil panic is not obvious because there are many
- // nillable types involved, so we will temporarily inspect all of them to
- // try to get a better idea of what is happening on that platform.
- checkNils := func() {
- if c == nil {
- panic("Dial returned a nil Conn")
- }
- if rc := reflect.ValueOf(c); rc.Kind() == reflect.Pointer && rc.IsNil() {
- panic(fmt.Sprintf("Dial returned a nil %T", c))
- }
- addr := c.LocalAddr()
- if addr == nil {
- panic(fmt.Sprintf("(%T).LocalAddr returned a nil Addr", c))
- }
- if raddr := reflect.ValueOf(addr); raddr.Kind() == reflect.Pointer && raddr.IsNil() {
- panic(fmt.Sprintf("(%T).LocalAddr returned a nil %T", c, addr))
- }
+ if addr := c.LocalAddr(); addr != nil {
+ t.Logf("connected %s->%s", addr, lss[i].Listener.Addr())
}
- defer func() {
- checkNils()
- os.Remove(c.LocalAddr().String())
- }()
- checkNils()
defer c.Close()
trchs = append(trchs, make(chan error, 1))