Skip to content

Commit cd116f1

Browse files
committed
Enable casing tests on Unix
1 parent 9c30d9b commit cd116f1

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

src/System.Globalization/tests/TextInfo.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ public class TextInfoTests
1111
[InlineData("")]
1212
[InlineData("en-US")]
1313
[InlineData("fr")]
14-
[ActiveIssue(846, PlatformID.AnyUnix)]
1514
public static void ToUpper(string localeName)
1615
{
1716
TextInfo ti = new CultureInfo(localeName).TextInfo;
@@ -58,7 +57,6 @@ public static void ToUpper(string localeName)
5857
[InlineData("")]
5958
[InlineData("en-US")]
6059
[InlineData("fr")]
61-
[ActiveIssue(846, PlatformID.AnyUnix)]
6260
public static void ToLower(string localeName)
6361
{
6462
TextInfo ti = new CultureInfo(localeName).TextInfo;
@@ -106,7 +104,6 @@ public static void ToLower(string localeName)
106104
[InlineData("tr-TR")]
107105
[InlineData("az")]
108106
[InlineData("az-Latn-AZ")]
109-
[ActiveIssue(846, PlatformID.AnyUnix)]
110107
public static void TurkishICasing(string localeName)
111108
{
112109
TextInfo ti = new CultureInfo(localeName).TextInfo;
@@ -128,7 +125,6 @@ public static void TurkishICasing(string localeName)
128125
[InlineData("")]
129126
[InlineData("en-US")]
130127
[InlineData("fr-FR")]
131-
[ActiveIssue(846, PlatformID.AnyUnix)]
132128
public static void NoUnicodeSpecalCases(string localeName)
133129
{
134130
// Unicode defines some codepoints which expand into multiple codepoints

src/System.Runtime/tests/System/Char.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ private static void ValidateConvertFromUtf32(int i, string expected)
4242
Assert.True(expected == null, "Expected an ArgumentOutOfRangeException");
4343
}
4444
}
45+
4546
[Fact]
4647
public static void TestConvertFromUtf32()
4748
{
@@ -766,7 +767,6 @@ public static void TestMinValue()
766767
}
767768

768769
[Fact]
769-
[ActiveIssue(846, PlatformID.AnyUnix)]
770770
public static void TestToLower()
771771
{
772772
// Char Char.ToLower(Char)
@@ -790,7 +790,6 @@ public static void TestToLower()
790790
}
791791

792792
[Fact]
793-
[ActiveIssue(846, PlatformID.AnyUnix)]
794793
public static void TestToLowerInvariant()
795794
{
796795
// Char Char.ToLowerInvariant(Char)
@@ -830,7 +829,6 @@ public static void TestToStringChar()
830829
}
831830

832831
[Fact]
833-
[ActiveIssue(846, PlatformID.AnyUnix)]
834832
public static void TestToUpper()
835833
{
836834
// Char Char.ToUpper(Char)
@@ -854,7 +852,6 @@ public static void TestToUpper()
854852
}
855853

856854
[Fact]
857-
[ActiveIssue(846, PlatformID.AnyUnix)]
858855
public static void TestToUpperInvariant()
859856
{
860857
// Char Char.ToUpperInvariant(Char)

0 commit comments

Comments
 (0)