Skip to content

Commit 34cc446

Browse files
neildgopherbot
authored andcommitted
quic: temporarily disable networking tests failing on various platforms
For golang/go#65906 For golang/go#65907 Change-Id: I5fe83a27f47b6f2337d280465bf134dbd883809d Reviewed-on: https://go-review.googlesource.com/c/net/+/566098 Auto-Submit: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Bryan Mills <[email protected]>
1 parent 4bdc6df commit 34cc446

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: internal/quic/udp_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
)
1717

1818
func TestUDPSourceUnspecified(t *testing.T) {
19+
t.Skip("https://go.dev/issue/65906 - temporarily skipped pending fix")
1920
// Send datagram with no source address set.
2021
runUDPTest(t, func(t *testing.T, test udpTest) {
2122
data := []byte("source unspecified")
@@ -33,6 +34,7 @@ func TestUDPSourceUnspecified(t *testing.T) {
3334
}
3435

3536
func TestUDPSourceSpecified(t *testing.T) {
37+
t.Skip("https://go.dev/issue/65906 - temporarily skipped pending fix")
3638
// Send datagram with source address set.
3739
runUDPTest(t, func(t *testing.T, test udpTest) {
3840
data := []byte("source specified")
@@ -51,6 +53,7 @@ func TestUDPSourceSpecified(t *testing.T) {
5153
}
5254

5355
func TestUDPSourceInvalid(t *testing.T) {
56+
t.Skip("https://go.dev/issue/65906 - temporarily skipped pending fix")
5457
// Send datagram with source address set to an address not associated with the connection.
5558
if !udpInvalidLocalAddrIsError {
5659
t.Skipf("%v: sending from invalid source succeeds", runtime.GOOS)
@@ -74,6 +77,7 @@ func TestUDPSourceInvalid(t *testing.T) {
7477
}
7578

7679
func TestUDPECN(t *testing.T) {
80+
t.Skip("https://go.dev/issue/65907 - temporarily skipped pending fix")
7781
if !udpECNSupport {
7882
t.Skipf("%v: no ECN support", runtime.GOOS)
7983
}

0 commit comments

Comments
 (0)