From 9241e483ee6bde602c6bdac1faea39a994bfd52e Mon Sep 17 00:00:00 2001 From: Aleksey Kliger Date: Fri, 6 Nov 2020 11:42:12 -0500 Subject: [PATCH 1/2] Disable RunThreadLocalTest8_Values on Mono It's failing on SLES --- src/libraries/System.Threading/tests/ThreadLocalTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Threading/tests/ThreadLocalTests.cs b/src/libraries/System.Threading/tests/ThreadLocalTests.cs index 236c78f3c4a82..55fc1eabb8805 100644 --- a/src/libraries/System.Threading/tests/ThreadLocalTests.cs +++ b/src/libraries/System.Threading/tests/ThreadLocalTests.cs @@ -224,6 +224,7 @@ public static void RunThreadLocalTest7_WeakReference() } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/43981"), TestRuntimes.Mono] public static void RunThreadLocalTest8_Values() { // Test adding values and updating values From e3ab4f49f6965ee41eb3c2e00fa0ae15281efad3 Mon Sep 17 00:00:00 2001 From: Aleksey Kliger Date: Fri, 6 Nov 2020 13:02:48 -0500 Subject: [PATCH 2/2] fix typo --- src/libraries/System.Threading/tests/ThreadLocalTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Threading/tests/ThreadLocalTests.cs b/src/libraries/System.Threading/tests/ThreadLocalTests.cs index 55fc1eabb8805..b6a1e1569c89f 100644 --- a/src/libraries/System.Threading/tests/ThreadLocalTests.cs +++ b/src/libraries/System.Threading/tests/ThreadLocalTests.cs @@ -224,7 +224,7 @@ public static void RunThreadLocalTest7_WeakReference() } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/43981"), TestRuntimes.Mono] + [ActiveIssue("https://github.com/dotnet/runtime/issues/43981", TestRuntimes.Mono)] public static void RunThreadLocalTest8_Values() { // Test adding values and updating values