From 4f0a2e3c958ddc60df7d8e85669d44a994be6dc0 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Thu, 8 Jan 2026 12:55:16 +0000 Subject: [PATCH] disable zip64 tests --- tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs | 12 ++++++------ tests/SharpCompress.Test/Zip/Zip64Tests.cs | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs b/tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs index de1282c1..2c943553 100644 --- a/tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs +++ b/tests/SharpCompress.Test/Zip/Zip64AsyncTests.cs @@ -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() { diff --git a/tests/SharpCompress.Test/Zip/Zip64Tests.cs b/tests/SharpCompress.Test/Zip/Zip64Tests.cs index e92c8d52..43dc1874 100644 --- a/tests/SharpCompress.Test/Zip/Zip64Tests.cs +++ b/tests/SharpCompress.Test/Zip/Zip64Tests.cs @@ -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() {