mirror of
https://github.com/golang/go
synced 2024-11-11 21:20:21 -07:00
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
This commit is contained in:
parent
ee8e28d328
commit
83001ffaaf
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user