Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public void NotFoundErrorIsExpected()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/55821", TestPlatforms.Android)]
public void DeleteDirectoryAfterOpening()
{
// We shouldn't prevent the directory from being deleted, even though we've
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ protected override bool ShouldRecurseIntoEntry(ref FileSystemEntry entry)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/55821", TestPlatforms.Android)]
public void CanRecurseFromRoot()
{
string root = Path.GetPathRoot(Path.GetTempPath());
Expand Down
3 changes: 3 additions & 0 deletions src/libraries/tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography.Csp\tests\System.Security.Cryptography.Csp.Tests.csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Threading.Thread\tests\System.Threading.Thread.Tests.csproj" />

<!-- Crash https://github.com/dotnet/runtime/issues/55823 -->
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Runtime.Experimental\tests\System.Runtime.Experimental.Tests.csproj" />

<!-- Crashes on x64 and x86, but not arm64 -->
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography.Pkcs\tests\System.Security.Cryptography.Pkcs.Tests.csproj" />

Expand Down