From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:18:20 +0000 (+0200) Subject: Enabled tests that were reported to fail but now pass. (#71077) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~8405 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff4ae18205df9f0e0d4e9cf82f1823f74f2782d5;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Enabled tests that were reported to fail but now pass. (#71077) --- diff --git a/src/libraries/System.Globalization.Extensions/tests/IdnMapping/IdnMappingIdnaConformanceTests.cs b/src/libraries/System.Globalization.Extensions/tests/IdnMapping/IdnMappingIdnaConformanceTests.cs index b9324d4..26e99ce 100644 --- a/src/libraries/System.Globalization.Extensions/tests/IdnMapping/IdnMappingIdnaConformanceTests.cs +++ b/src/libraries/System.Globalization.Extensions/tests/IdnMapping/IdnMappingIdnaConformanceTests.cs @@ -21,7 +21,6 @@ namespace System.Globalization.Tests /// There are some others that failed which have been commented out and marked in the dataset as "GETASCII DOES FAILS ON WINDOWS 8.1" /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowserOnWindows), nameof(PlatformDetection.IsMonoAOT))] public void GetAscii_Success() { Assert.All(Factory.GetDataset().Where(e => e.ASCIIResult.Success), entry => @@ -52,7 +51,6 @@ namespace System.Globalization.Tests /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file /// [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowserOnWindows), nameof(PlatformDetection.IsMonoAOT))] public void GetUnicode_Success() { Assert.All(Factory.GetDataset().Where(e => e.UnicodeResult.Success && e.UnicodeResult.ValidDomainName), entry => @@ -85,7 +83,6 @@ namespace System.Globalization.Tests /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file /// [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // https://github.com/dotnet/runtime/issues/22409 - [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowserOnWindows), nameof(PlatformDetection.IsMonoAOT))] public void GetAscii_Invalid() { Assert.All(Factory.GetDataset().Where(entry => !entry.ASCIIResult.Success), entry => @@ -115,7 +112,6 @@ namespace System.Globalization.Tests /// Same applies to Windows 10 >= 10.0.15063 in the IdnaTest_9.txt file /// [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/58708", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowserOnWindows), nameof(PlatformDetection.IsMonoAOT))] public void GetUnicode_Invalid() { Assert.All(Factory.GetDataset().Where(entry => !entry.UnicodeResult.Success), entry =>