Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 63f0953

Browse files
Marking tests failing on Unix
1 parent 921ca44 commit 63f0953

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+71
-2
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/System.Globalization/tests/CompareInfo/compareinfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ namespace System.Globalization.Tests
1010
public class CompareInfoTest
1111
{
1212
[Fact]
13+
[ActiveIssue(846, PlatformID.AnyUnix)]
1314
public void TestCompareInfo()
1415
{
1516
CompareInfo ciENG = CompareInfo.GetCompareInfo("en-US");
@@ -21,6 +22,7 @@ public void TestCompareInfo()
2122
}
2223

2324
[Fact]
25+
[ActiveIssue(846, PlatformID.AnyUnix)]
2426
public void CompareInfoIndexTest1()
2527
{
2628
// Creates CompareInfo for the InvariantCulture.
@@ -72,6 +74,7 @@ public void CompareInfoIndexTest1()
7274
}
7375

7476
[Fact]
77+
[ActiveIssue(846, PlatformID.AnyUnix)]
7578
public void CompareInfoIndexTest2()
7679
{
7780
// Creates CompareInfo for the InvariantCulture.

src/System.Globalization/tests/CultureInfo/CultureInfoAll.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ namespace System.Globalization.Tests
1616
public class CultureInfoAll
1717
{
1818
[Fact]
19+
[ActiveIssue(846, PlatformID.AnyUnix)]
1920
public void TestAllCultures()
2021
{
2122
Assert.True(EnumSystemLocalesEx(EnumLocales, LOCALE_WINDOWS, IntPtr.Zero, IntPtr.Zero), "EnumSystemLocalesEx has failed");
Binary file not shown.

src/System.Globalization/tests/CultureInfo/CultureInfoConstructor2.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public void TestNullCulture()
2525
}
2626

2727
[Fact]
28+
[ActiveIssue(846, PlatformID.AnyUnix)]
2829
public void TestInvalidCulture()
2930
{
3031
Assert.Throws<CultureNotFoundException>(() => { CultureInfo myCulture = new CultureInfo("NotAValidCulture"); });

src/System.Globalization/tests/CultureInfo/CultureInfoEquals.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public void TestInvariantCulture()
3434
}
3535

3636
[Fact]
37+
[ActiveIssue(846, PlatformID.AnyUnix)]
3738
public void TestEqualNameAndCultureIdentifier()
3839
{
3940
CultureInfo myCultureInfo = new CultureInfo("en");
@@ -64,6 +65,7 @@ public void TestEqualCultureIdentifier()
6465
}
6566

6667
[Fact]
68+
[ActiveIssue(846, PlatformID.AnyUnix)]
6769
public void TestUnequal()
6870
{
6971
CultureInfo myCultureInfo = new CultureInfo("en-US");

0 commit comments

Comments
 (0)