Skip to content

Commit

Permalink
Disable some library tests due to failures/crash (dotnet#55826)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximLipnin committed Jul 19, 2021
1 parent 3301e9d commit 5da7094
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
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

0 comments on commit 5da7094

Please sign in to comment.