diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs index 5cb496f253bf29..60f87321e62a70 100644 --- a/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs +++ b/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs @@ -202,6 +202,7 @@ public async Task NoFile_Succeeds(bool usePreBuffer, bool usePostBuffer) } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/47734")] public async Task SliceBuffers_Success() { if (!SupportsSendFileSlicing) return; // The overloads under test only support sending byte[] without offset and length diff --git a/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs b/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs index 4f559a3bcf0b3e..754e17ce152426 100644 --- a/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs +++ b/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs @@ -42,6 +42,7 @@ public static void RunContinueWithAsyncStateCheckTests() // Stresses on multiple continuations from a single antecedent [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] [SkipOnCoreClr("Test timing out: https://github.com/dotnet/runtime/issues/2271", RuntimeConfiguration.Checked)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/2271")] public static void RunContinueWithStressTestsNoState() { int numIterations = 3;