Commit afc8adc8 by Ian Lance Taylor

re PR go/59506 (net FAILs (timeout) on alpha)

	PR go/59506

net: use DialTimeout in TestSelfConnect

Backported from master repository.

This avoids problems with systems that take a long time to
find out nothing is listening, while still testing for the
self-connect misfeature since a self-connect should be fast.
With this we may be able to remove the test for non-Linux
systems.

Tested (on GNU/Linux) by editing selfConnect in
tcpsock_posix.go to always return false and verifying that
TestSelfConnect then fails with and without this change.

Idea from Uros Bizjak.

From-SVN: r206224
parent 4de67111
...@@ -147,7 +147,7 @@ func TestSelfConnect(t *testing.T) { ...@@ -147,7 +147,7 @@ func TestSelfConnect(t *testing.T) {
n = 100 n = 100
} }
for i := 0; i < n; i++ { for i := 0; i < n; i++ {
c, err := Dial("tcp", addr) c, err := DialTimeout("tcp", addr, time.Millisecond)
if err == nil { if err == nil {
c.Close() c.Close()
t.Errorf("#%d: Dial %q succeeded", i, addr) t.Errorf("#%d: Dial %q succeeded", i, addr)
......
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