From 93325820e1ff02b6f1e91854816fc23ada041461 Mon Sep 17 00:00:00 2001 From: Anirudh Agnihotry Date: Thu, 18 Feb 2021 13:54:06 -0800 Subject: [PATCH] Disable slicebuffers_success and RunContinueWithStressTestsNoState test (#48442) * disable long failing tests * keeping the skipOncoreclr attribute --- .../System.Net.Sockets/tests/FunctionalTests/SendFile.cs | 1 + .../System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/SendFile.cs index 5cb496f253bf2..60f87321e62a7 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 4f559a3bcf0b3..754e17ce15242 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;