From 83001ffaaf90dcb32a7a1e2c95f6913bf1503618 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 6 Oct 2014 13:09:14 -0400 Subject: [PATCH] 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 --- src/net/unicast_posix_test.go | 3 +++ 1 file changed, 3 insertions(+) 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)