From: Russ Cox Date: Mon, 6 Oct 2014 17:09:14 +0000 (-0400) Subject: net: disable TestDualStackUDPListener in short mode X-Git-Tag: go1.4beta1~195 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=83001ffaaf90dcb32a7a1e2c95f6913bf1503618;p=gostls13.git net: disable TestDualStackUDPListener in short mode 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 --- diff --git a/src/net/unicast_posix_test.go b/src/net/unicast_posix_test.go index 452ac92542..ab7ef40a75 100644 --- a/src/net/unicast_posix_test.go +++ b/src/net/unicast_posix_test.go @@ -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)