Skip to content
Prev Previous commit
Next Next commit
Disable failing System.Formats.Tar tests on Android
  • Loading branch information
simonrozsival authored and github-actions committed Aug 19, 2022
commit 8e89e7c0ca0c66918b2881798ddc5a2999119eea
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ 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,6 +116,7 @@ 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,6 +163,7 @@ 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 @@ -235,6 +236,7 @@ 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,6 +192,7 @@ 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 @@ -249,6 +250,7 @@ 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