From 0ae04e5b33afac1c14a6127df1037f83d39a6ec3 Mon Sep 17 00:00:00 2001 From: Meri Khamoyan <96171496+mkhamoyan@users.noreply.github.com> Date: Thu, 3 Feb 2022 17:33:37 +0400 Subject: [PATCH] #55822 Disable CanRecurseFrom root for andoid (#64682) --- .../System.IO.FileSystem/tests/Enumeration/RootTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.IO.FileSystem/tests/Enumeration/RootTests.cs b/src/libraries/System.IO.FileSystem/tests/Enumeration/RootTests.cs index e6925ccb8f2c3..501e2011efd3a 100644 --- a/src/libraries/System.IO.FileSystem/tests/Enumeration/RootTests.cs +++ b/src/libraries/System.IO.FileSystem/tests/Enumeration/RootTests.cs @@ -31,7 +31,7 @@ protected override bool ShouldRecurseIntoEntry(ref FileSystemEntry entry) } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/55821", TestPlatforms.Android)] + [SkipOnPlatform(TestPlatforms.Android, "Test could not work on android since accessing '/' isn't allowed.")] public void CanRecurseFromRoot() { string root = Path.GetPathRoot(Path.GetTempPath());