File tree Expand file tree Collapse file tree 4 files changed +0
-9
lines changed
System.Net.Ping/tests/FunctionalTests
System.Net.Sockets/tests/FunctionalTests Expand file tree Collapse file tree 4 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ public class UnixPingUtilityTests
2626 [ InlineData ( 1000 ) ]
2727 [ InlineData ( 1500 ) ]
2828 [ PlatformSpecific ( TestPlatforms . AnyUnix ) ]
29- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
3029 public static void TimeoutIsRespected ( int timeout )
3130 {
3231 Process p = ConstructPingProcess ( IPAddress . Parse ( TestSettings . UnreachableAddress ) , 50 , timeout ) ;
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ public async Task NullEndpoint_Throws_ArgumentException()
6464 }
6565
6666 [ Fact ]
67- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
6867 public async Task Datagram_UDP_ShouldImplicitlyBindLocalEndpoint ( )
6968 {
7069 using var socket = new Socket ( AddressFamily . InterNetwork , SocketType . Dgram , ProtocolType . Udp ) ;
@@ -85,7 +84,6 @@ public async Task Datagram_UDP_ShouldImplicitlyBindLocalEndpoint()
8584 }
8685
8786 [ Fact ]
88- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
8987 public async Task Datagram_UDP_AccessDenied_Throws_DoesNotBind ( )
9088 {
9189 IPEndPoint invalidEndpoint = new IPEndPoint ( IPAddress . Broadcast , 1234 ) ;
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ public void ReuseUnicastPort_CreateSocketSetOption()
5151 }
5252
5353 [ Fact ]
54- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
5554 public void MulticastOption_CreateSocketSetGetOption_GroupAndInterfaceIndex_SetSucceeds_GetThrows ( )
5655 {
5756 int interfaceIndex = 0 ;
@@ -66,7 +65,6 @@ public void MulticastOption_CreateSocketSetGetOption_GroupAndInterfaceIndex_SetS
6665 }
6766
6867 [ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotWindowsNanoNorServerCore ) ) ] // Skip on Nano: https://github.com/dotnet/runtime/issues/26286
69- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
7068 public async Task MulticastInterface_Set_AnyInterface_Succeeds ( )
7169 {
7270 // On all platforms, index 0 means "any interface"
Original file line number Diff line number Diff line change @@ -439,7 +439,6 @@ public void Connect_InvalidArguments_Throws()
439439 }
440440
441441 [ Fact ]
442- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
443442 public async Task ConnectAsync_StringHost_Success ( )
444443 {
445444 using ( var c = new UdpClient ( ) )
@@ -449,7 +448,6 @@ public async Task ConnectAsync_StringHost_Success()
449448 }
450449
451450 [ Fact ]
452- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
453451 public async Task ConnectAsync_IPAddressHost_Success ( )
454452 {
455453 using ( var c = new UdpClient ( ) )
@@ -459,7 +457,6 @@ public async Task ConnectAsync_IPAddressHost_Success()
459457 }
460458
461459 [ Fact ]
462- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
463460 public void Connect_StringHost_Success ( )
464461 {
465462 using ( var c = new UdpClient ( ) )
@@ -469,7 +466,6 @@ public void Connect_StringHost_Success()
469466 }
470467
471468 [ Fact ]
472- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/61343" , TestPlatforms . Android ) ]
473469 public void Connect_IPAddressHost_Success ( )
474470 {
475471 using ( var c = new UdpClient ( ) )
You can’t perform that action at this time.
0 commit comments