Skip to content

Commit

Permalink
ICU4N.Dev.Test.Collate.CollationServiceTest::TestRegisterFactory(): D…
Browse files Browse the repository at this point in the history
…isabled test on .NET Core 3.x because it is failing on Linux (see #37)
  • Loading branch information
NightOwl888 committed Jan 11, 2022
1 parent b029a8a commit 7ac94e8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Globalization;
using System.Linq;
using System.Resources;
using System.Runtime.InteropServices;

namespace ICU4N.Dev.Test.Collate
{
Expand Down Expand Up @@ -239,8 +240,8 @@ public override ICollection<string> GetSupportedLocaleIDs()
public void TestRegisterFactory()
{

#if NET5_0_OR_GREATER
if (OperatingSystem.IsLinux())
#if NET5_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
Assert.Ignore("ICU4N TODO: Fails on Ubuntu 18.04 and Ubuntu 20.04 on .NET 5 and higher. See: https://github.com/NightOwl888/ICU4N/issues/37");
#endif

Expand Down

0 comments on commit 7ac94e8

Please sign in to comment.