disable zip64 tests

This commit is contained in:
Adam Hathcock
2026-01-08 12:55:16 +00:00
parent 3747a27109
commit 4f0a2e3c95
2 changed files with 12 additions and 12 deletions

View File

@@ -33,24 +33,24 @@ public class Zip64AsyncTests : WriterTests
public async ValueTask Zip64_Two_Large_Files_Async() =>
await RunSingleTestAsync(2, FOUR_GB_LIMIT, setZip64: true, forwardOnly: false);
[Fact]
//[Fact]
[Trait("format", "zip64")]
public async ValueTask Zip64_Two_Small_files_Async() =>
// Multiple files, does not require zip64
await RunSingleTestAsync(2, FOUR_GB_LIMIT / 2, setZip64: false, forwardOnly: false);
[Fact]
// [Fact]
[Trait("format", "zip64")]
public async ValueTask Zip64_Two_Small_files_stream_Async() =>
await RunSingleTestAsync(2, FOUR_GB_LIMIT / 2, setZip64: false, forwardOnly: true);
[Fact]
// [Fact]
[Trait("format", "zip64")]
public async ValueTask Zip64_Two_Small_Files_Zip64_Async() =>
// Multiple files, use zip64 even though it is not required
await RunSingleTestAsync(2, FOUR_GB_LIMIT / 2, setZip64: true, forwardOnly: false);
[Fact]
// [Fact]
[Trait("format", "zip64")]
public async ValueTask Zip64_Single_Large_File_Fail_Async()
{
@@ -63,7 +63,7 @@ public class Zip64AsyncTests : WriterTests
catch (NotSupportedException) { }
}
[Fact]
// [Fact]
[Trait("zip64", "true")]
public async ValueTask Zip64_Single_Large_File_Zip64_Streaming_Fail_Async()
{
@@ -76,7 +76,7 @@ public class Zip64AsyncTests : WriterTests
catch (NotSupportedException) { }
}
[Fact]
// [Fact]
[Trait("zip64", "true")]
public async ValueTask Zip64_Single_Large_File_Streaming_Fail_Async()
{

View File

@@ -34,25 +34,25 @@ public class Zip64Tests : WriterTests
// One single file, requires zip64
RunSingleTest(2, FOUR_GB_LIMIT, setZip64: true, forwardOnly: false);
[Fact]
//[Fact]
[Trait("format", "zip64")]
public void Zip64_Two_Small_files() =>
// Multiple files, does not require zip64
RunSingleTest(2, FOUR_GB_LIMIT / 2, setZip64: false, forwardOnly: false);
[Fact]
//[Fact]
[Trait("format", "zip64")]
public void Zip64_Two_Small_files_stream() =>
// Multiple files, does not require zip64, and works with streams
RunSingleTest(2, FOUR_GB_LIMIT / 2, setZip64: false, forwardOnly: true);
[Fact]
//[Fact]
[Trait("format", "zip64")]
public void Zip64_Two_Small_Files_Zip64() =>
// Multiple files, use zip64 even though it is not required
RunSingleTest(2, FOUR_GB_LIMIT / 2, setZip64: true, forwardOnly: false);
[Fact]
// [Fact]
[Trait("format", "zip64")]
public void Zip64_Single_Large_File_Fail()
{
@@ -65,7 +65,7 @@ public class Zip64Tests : WriterTests
catch (NotSupportedException) { }
}
[Fact]
//[Fact]
[Trait("zip64", "true")]
public void Zip64_Single_Large_File_Zip64_Streaming_Fail()
{
@@ -78,7 +78,7 @@ public class Zip64Tests : WriterTests
catch (NotSupportedException) { }
}
[Fact]
// [Fact]
[Trait("zip64", "true")]
public void Zip64_Single_Large_File_Streaming_Fail()
{