Skip to content

Commit

Permalink
Add ActiveIssue to the MemoryMappedFiles tests
Browse files Browse the repository at this point in the history
  • Loading branch information
radekdoulik committed May 28, 2021
1 parent 268552d commit ec1ae53
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -697,13 +697,15 @@ private void WriteToReadOnlyFile(MemoryMappedFileAccess access, bool succeeds)
[Theory]
[InlineData(MemoryMappedFileAccess.Read)]
[InlineData(MemoryMappedFileAccess.ReadWrite)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile_ReadWrite(MemoryMappedFileAccess access)
{
WriteToReadOnlyFile(access, access == MemoryMappedFileAccess.Read ||
PlatformDetection.IsSuperUser);
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile_CopyOnWrite()
{
WriteToReadOnlyFile(MemoryMappedFileAccess.CopyOnWrite, PlatformDetection.IsSuperUser);
Expand Down

0 comments on commit ec1ae53

Please sign in to comment.