]> Cypherpunks repositories - gostls13.git/commitdiff
net: disable TestDualStackUDPListener in short mode
authorRuss Cox <rsc@golang.org>
Mon, 6 Oct 2014 17:09:14 +0000 (13:09 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 6 Oct 2014 17:09:14 +0000 (13:09 -0400)
This test is flaky, just like TestDualStackTCPListener.
That one was disabled. Disable this one too.

Update #5001

LGTM=bradfitz
R=rlh, bradfitz
CC=golang-codereviews
https://golang.org/cl/154950043

src/net/unicast_posix_test.go

index 452ac925428d1ae50453b08e9fbf71172405feda..ab7ef40a758da8bc58523235072bfd28638dc8ba 100644 (file)
@@ -204,6 +204,9 @@ func TestDualStackTCPListener(t *testing.T) {
 // to a test listener with various address families, differnet
 // listening address and same port.
 func TestDualStackUDPListener(t *testing.T) {
+       if testing.Short() {
+               t.Skip("skipping in -short mode, see issue 5001")
+       }
        switch runtime.GOOS {
        case "plan9":
                t.Skipf("skipping test on %q", runtime.GOOS)