Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Revert "Disable failing System.Formats.Tar tests on Android"
This reverts commit bfc2958.
  • Loading branch information
simonrozsival committed Aug 19, 2022
commit 5e217c8cbb617cebf7ffaa868d137319982b9007
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public void ExtractToFile_Link_Throws(TarEntryFormat format, TarEntryType entryT

[Theory]
[MemberData(nameof(GetFormatsAndFiles))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public void Extract(TarEntryFormat format, TarEntryType entryType)
{
using TempDirectory root = new TempDirectory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ public async Task ExtractToFile_Link_Throws_Async(TarEntryFormat format, TarEntr

[Theory]
[MemberData(nameof(GetFormatsAndFiles))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public async Task Extract_Async(TarEntryFormat format, TarEntryType entryType)
{
using TempDirectory root = new TempDirectory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ public void ExtractArchiveWithEntriesThatStartWithSlashDotPrefix()
[Theory]
[InlineData(true)]
[InlineData(false)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public void UnixFileModes(bool overwrite)
{
using TempDirectory source = new TempDirectory();
Expand Down Expand Up @@ -236,7 +235,6 @@ public void UnixFileModes(bool overwrite)
[Theory]
[InlineData(true)]
[InlineData(false)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public void UnixFileModes_RestrictiveParentDir(bool overwrite)
{
using TempDirectory source = new TempDirectory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ public async Task ExtractArchiveWithEntriesThatStartWithSlashDotPrefix_Async()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public async Task UnixFileModes_Async()
{
using TempDirectory source = new TempDirectory();
Expand Down Expand Up @@ -250,7 +249,6 @@ public async Task UnixFileModes_Async()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.Android)]
public async Task UnixFileModes_RestrictiveParentDir_Async()
{
using TempDirectory source = new TempDirectory();
Expand Down