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

Commit 303922a

Browse files
committed
Disable failing System.IO tests
1 parent 3980e74 commit 303922a

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

src/System.IO.FileSystem/tests/Directory/GetDirectoryRoot.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public void WhitespacePaths()
4949
Assert.Equal(Path.GetPathRoot(Directory.GetCurrentDirectory()), root);
5050
}
5151

52+
[ActiveIssue(27552)]
5253
[Fact]
5354
[PlatformSpecific(TestPlatforms.Windows)] // UNC shares
5455
public void UNCShares()

src/System.IO.FileSystem/tests/Directory/GetParent.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public void DotsInPathAreValid()
3838
Assert.Equal(TestDirectory, test.FullName);
3939
}
4040

41+
[ActiveIssue(27552)]
4142
[Fact]
4243
[PlatformSpecific(TestPlatforms.Windows)] // UNC shares
4344
public void UNCShares()

src/System.IO.FileSystem/tests/DirectoryInfo/Root.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public void DotsInPathAreValid()
3131
Assert.Equal(root, test.FullName);
3232
}
3333

34+
[ActiveIssue(27552)]
3435
[Fact]
3536
[PlatformSpecific(TestPlatforms.Windows)] // UNC shares
3637
public void UNCShares()

src/System.IO.FileSystem/tests/FileInfo/Directory.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public void DotsInPathAreValid()
4747
Assert.Equal(TestDirectory, directory);
4848
}
4949

50+
[ActiveIssue(27552)]
5051
[Fact]
5152
[PlatformSpecific(TestPlatforms.Windows)] // UNC shares
5253
public void UNCShares()

src/System.Runtime.Extensions/tests/System/IO/PathTests_Windows.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public static void GetFileName_Volume(string path, string expected)
3939
Assert.Equal(expected, Path.GetFileName(path));
4040
}
4141

42+
[ActiveIssue(27552)]
4243
[Theory,
4344
MemberData(nameof(TestData_GetPathRoot_Windows)),
4445
MemberData(nameof(TestData_GetPathRoot_Unc)),

src/System.Runtime.Extensions/tests/System/IO/PathTests_Windows.netcoreapp.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace System.IO.Tests
88
{
99
public partial class PathTests_Windows : PathTestsBase
1010
{
11+
[ActiveIssue(27552)]
1112
[Theory,
1213
MemberData(nameof(TestData_GetPathRoot_Windows)),
1314
MemberData(nameof(TestData_GetPathRoot_Unc)),

0 commit comments

Comments
 (0)