From f30778051975edca2cfd5f5a880da2c05153ee51 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sat, 21 Jan 2023 16:21:56 -0500 Subject: [PATCH] Change how a task stress test is disabled --- .../tests/Task/TaskContinueWithTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs b/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs index 11d2e326bcc6f8..4658e185d4db97 100644 --- a/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs +++ b/src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs @@ -41,8 +41,8 @@ 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.Release)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/2271")] + [SkipOnCoreClr("Stress test", ~RuntimeConfiguration.Release)] + [SkipOnMono("Stress test")] public static void RunContinueWithStressTestsNoState() { int numIterations = 3;