Change how a task stress test is disabled (#80981)
authorStephen Toub <stoub@microsoft.com>
Sun, 22 Jan 2023 23:22:03 +0000 (18:22 -0500)
committerGitHub <noreply@github.com>
Sun, 22 Jan 2023 23:22:03 +0000 (18:22 -0500)
src/libraries/System.Threading.Tasks/tests/Task/TaskContinueWithTests.cs

index 11d2e326bcc6f8e764da58e9853bb96036e41ac6..4658e185d4db9779bd630d10de5b21cc49641c34 100644 (file)
@@ -41,8 +41,8 @@ namespace System.Threading.Tasks.Tests
 
         // 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;