@@ -16,6 +16,7 @@ import (
16
16
)
17
17
18
18
func TestUDPSourceUnspecified (t * testing.T ) {
19
+ t .Skip ("https://go.dev/issue/65906 - temporarily skipped pending fix" )
19
20
// Send datagram with no source address set.
20
21
runUDPTest (t , func (t * testing.T , test udpTest ) {
21
22
data := []byte ("source unspecified" )
@@ -33,6 +34,7 @@ func TestUDPSourceUnspecified(t *testing.T) {
33
34
}
34
35
35
36
func TestUDPSourceSpecified (t * testing.T ) {
37
+ t .Skip ("https://go.dev/issue/65906 - temporarily skipped pending fix" )
36
38
// Send datagram with source address set.
37
39
runUDPTest (t , func (t * testing.T , test udpTest ) {
38
40
data := []byte ("source specified" )
@@ -51,6 +53,7 @@ func TestUDPSourceSpecified(t *testing.T) {
51
53
}
52
54
53
55
func TestUDPSourceInvalid (t * testing.T ) {
56
+ t .Skip ("https://go.dev/issue/65906 - temporarily skipped pending fix" )
54
57
// Send datagram with source address set to an address not associated with the connection.
55
58
if ! udpInvalidLocalAddrIsError {
56
59
t .Skipf ("%v: sending from invalid source succeeds" , runtime .GOOS )
@@ -74,6 +77,7 @@ func TestUDPSourceInvalid(t *testing.T) {
74
77
}
75
78
76
79
func TestUDPECN (t * testing.T ) {
80
+ t .Skip ("https://go.dev/issue/65907 - temporarily skipped pending fix" )
77
81
if ! udpECNSupport {
78
82
t .Skipf ("%v: no ECN support" , runtime .GOOS )
79
83
}
0 commit comments