From: Mitchell Hwang <16830051+mdh1418@users.noreply.github.com> Date: Thu, 5 Aug 2021 11:24:13 +0000 (-0400) Subject: [libraries][Android] Remove System.Threading.Tests activeIssue (#56878) X-Git-Tag: accepted/tizen/unified/20220110.054933~632 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c235256cecb2d963bb5fd6f8bd3668f6d0833de3;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [libraries][Android] Remove System.Threading.Tests activeIssue (#56878) Co-authored-by: Mitchell Hwang --- diff --git a/src/libraries/System.Threading/tests/AutoResetEventTests.cs b/src/libraries/System.Threading/tests/AutoResetEventTests.cs index f741885..f3163cf 100644 --- a/src/libraries/System.Threading/tests/AutoResetEventTests.cs +++ b/src/libraries/System.Threading/tests/AutoResetEventTests.cs @@ -52,7 +52,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] public void WaitHandleWaitAll() { AutoResetEvent[] handles = new AutoResetEvent[10]; @@ -71,7 +70,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] public void WaitHandleWaitAny() { AutoResetEvent[] handles = new AutoResetEvent[10]; @@ -86,7 +84,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public void PingPong() { diff --git a/src/libraries/System.Threading/tests/ExecutionContextTests.cs b/src/libraries/System.Threading/tests/ExecutionContextTests.cs index 7e8eb3d..6da5807 100644 --- a/src/libraries/System.Threading/tests/ExecutionContextTests.cs +++ b/src/libraries/System.Threading/tests/ExecutionContextTests.cs @@ -62,7 +62,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void FlowTest() { diff --git a/src/libraries/System.Threading/tests/ManualResetEventTests.cs b/src/libraries/System.Threading/tests/ManualResetEventTests.cs index c3d57ae..def43fc 100644 --- a/src/libraries/System.Threading/tests/ManualResetEventTests.cs +++ b/src/libraries/System.Threading/tests/ManualResetEventTests.cs @@ -37,7 +37,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] public void WaitHandleWaitAll() { ManualResetEvent[] handles = new ManualResetEvent[10]; @@ -56,7 +55,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] public void WaitHandleWaitAny() { ManualResetEvent[] handles = new ManualResetEvent[10]; @@ -71,7 +69,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public void PingPong() { diff --git a/src/libraries/System.Threading/tests/ReaderWriterLockTests.cs b/src/libraries/System.Threading/tests/ReaderWriterLockTests.cs index 8eb7b25..3b49899 100644 --- a/src/libraries/System.Threading/tests/ReaderWriterLockTests.cs +++ b/src/libraries/System.Threading/tests/ReaderWriterLockTests.cs @@ -122,7 +122,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void BasicLockTest() { @@ -512,7 +511,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void WaitingWritersTest() { @@ -545,7 +543,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void ReadersWaitingOnWaitingWriterTest() { @@ -597,7 +594,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void ReadersWaitingOnWaitingUpgraderTest() { @@ -652,7 +648,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void WaitingUpgradersTest() { @@ -699,7 +694,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void AtomicRecursiveReaderTest() { @@ -727,7 +721,6 @@ namespace System.Threading.Tests } [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49890", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/51400", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void AtomicDowngradeTest() {