Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs')
-rw-r--r--src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs b/src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs
index 453ea60d0b..b7a5603fa0 100644
--- a/src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs
+++ b/src/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs
@@ -11,7 +11,6 @@ namespace System.IO.Compression.Tests
{
[Theory]
[InlineData("7zip.zip", "normal", true, true)]
- [InlineData("deflate64.zip", "normal", true, true)]
[InlineData("windows.zip", "normalWithoutEmptyDir", false, true)]
[InlineData("dotnetzipstreaming.zip", "normal", false, false)]
[InlineData("sharpziplib.zip", "normalWithoutEmptyDir", false, false)]
@@ -21,6 +20,13 @@ namespace System.IO.Compression.Tests
IsZipSameAsDir(await StreamHelpers.CreateTempCopyStream(compat(zipFile)), zfolder(zipFolder), ZipArchiveMode.Update, requireExplicit, checkTimes);
}
+ [Fact]
+ [SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework, "Deflate64 zip support is a netcore feature not available on full framework.")]
+ public static async Task Deflate64Zip()
+ {
+ IsZipSameAsDir(await StreamHelpers.CreateTempCopyStream(compat("deflate64.zip")), zfolder("normal"), ZipArchiveMode.Update, requireExplicit: true, checkTimes: true);
+ }
+
[Theory]
[InlineData("excel.xlsx", "excel", false, false)]
[InlineData("powerpoint.pptx", "powerpoint", false, false)]