From 2973724e9eeda9d675cf1ea2d8de1d93f68bbc7a Mon Sep 17 00:00:00 2001 From: Santiago Fernandez Madero Date: Thu, 7 May 2020 22:10:50 -0700 Subject: [PATCH] Disable NonDisposedSocket_SafeHandlesCollected in AnyUnix (#36099) --- .../tests/FunctionalTests/DisposedSocketTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/DisposedSocketTests.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/DisposedSocketTests.cs index 21e4750d4744b..ee81d7cdf81ac 100644 --- a/src/libraries/System.Net.Sockets/tests/FunctionalTests/DisposedSocketTests.cs +++ b/src/libraries/System.Net.Sockets/tests/FunctionalTests/DisposedSocketTests.cs @@ -751,7 +751,7 @@ public void EndAccept_Throws_ObjectDisposed() [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsPreciseGcSupported))] [InlineData(false)] [InlineData(true)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/35846", TestPlatforms.Linux)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/35846", TestPlatforms.AnyUnix)] public async Task NonDisposedSocket_SafeHandlesCollected(bool clientAsync) { List handles = await CreateHandlesAsync(clientAsync);