[libraries][Android] Move System.Text.RegularExpressions edge case tests to separate...
authorMitchell Hwang <16830051+mdh1418@users.noreply.github.com>
Fri, 30 Jul 2021 14:00:31 +0000 (10:00 -0400)
committerGitHub <noreply@github.com>
Fri, 30 Jul 2021 14:00:31 +0000 (10:00 -0400)
Co-authored-by: Mitchell Hwang <mitchell.hwang@microsoft.com>
src/libraries/System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs
src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs

index f3acd46..0149fbe 100644 (file)
@@ -903,7 +903,7 @@ namespace System.Text.RegularExpressions.Tests
         [MemberData(nameof(Groups_CustomCulture_TestData_Danish))]
         [MemberData(nameof(Groups_CustomCulture_TestData_Turkish))]
         [MemberData(nameof(Groups_CustomCulture_TestData_AzeriLatin))]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36848", TestPlatforms.Android)]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/56407", TestPlatforms.Android)]
         [ActiveIssue("https://github.com/dotnet/runtime/issues/36900", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
         public void Groups(string cultureName, string pattern, string input, RegexOptions options, string[] expectedGroups)
         {
index ba1a601..7b51966 100644 (file)
@@ -73,7 +73,7 @@ namespace System.Text.RegularExpressions.Tests
         [Theory]
         [InlineData(2)]
         [InlineData(256)]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36848", TestPlatforms.Android)]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/56407", TestPlatforms.Android)]
         public void TurkishI_Is_Differently_LowerUpperCased_In_Turkish_Culture(int length)
         {
             var turkish = new CultureInfo("tr-TR");