Skip to content

Commit 1c0242a

Browse files
committed
Build NuGet Package
* Add lists of passing and failing tests * Have AppVeyor and Travis only run the passing subset of tests * Update .nuspec to include .pdb and .xml files
1 parent 53d60da commit 1c0242a

9 files changed

Lines changed: 485 additions & 19 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ install:
1111
script:
1212
- xbuild /p:Configuration=Debug ICSharpCode.SharpZipLib.sln
1313
- xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
14-
- mono ./packages/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe /framework:mono-4.0 /result:./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
14+
- mono ./packages/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe /framework:mono-4.0 /runlist:./ICSharpCode.SharpZipLib.Tests/PassingTests.txt /result:./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,36 @@
11
<?xml version="1.0"?>
22
<package>
3-
<metadata>
3+
<metadata minClientVersion="2.0">
44
<id>ICSharpCode.SharpZipLib</id>
5-
<version>1.0.0</version>
5+
<version>0.87</version>
66
<title>SharpZipLib</title>
77
<authors>IC#Code</authors>
88
<owners>IC#Code</owners>
9-
<licenseUrl>https://visualstudiogallery.msdn.microsoft.com/site/68c1575b-e0bf-420d-a94b-1b0f4bcdcbcc/eula?licenseType=None</licenseUrl>
10-
<projectUrl>http://icsharpcode.github.io/SharpZipLib/</projectUrl>
11-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<description>Compression library for Zip, GZip, BZip2, LZW, and Tar written entirely in C# for the .NET platform.</description>
9+
<description>SharpZipLib (#ziplib, formerly NZipLib) is a compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET. It is implemented as an assembly (installable in the GAC), and thus can easily be incorporated into other projects (in any .NET language)</description>
1310
<releaseNotes>Please see https://github.com/icsharpcode/SharpZipLib/wiki/Release-1.0 for more information.</releaseNotes>
11+
<summary>Compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET.</summary>
12+
<language>en-US</language>
13+
<projectUrl>http://icsharpcode.github.io/SharpZipLib/</projectUrl>
14+
<!-- iconUrl -->
15+
<licenseUrl>http://icsharpcode.github.io/SharpZipLib/#license</licenseUrl>
1416
<copyright>Copyright © 2000-2016 AlphaSierraPapa for the SharpZipLib Team</copyright>
15-
<tags>Compression Library Zip Gzip BZip2 LZW Tar</tags>
16-
<dependencies>
17-
<dependency id="System" version="1.0.0" />
18-
</dependencies>
17+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
18+
<!-- dependencies -->
19+
<!-- references -->
20+
<frameworkAssemblies>
21+
<frameworkAssembly assemblyName="System" />
22+
</frameworkAssemblies>
23+
<tags>Compression Library Zip GZip BZip2 Tar</tags>
1924
</metadata>
2025
<files>
21-
<file src="ICSharpCode.SharpZipLib.dll" target="lib\Net45\" />
22-
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnx451\" />
23-
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnxcore50\" />
26+
<file src="..\bin\Release\$id$.dll" target="lib\Net45\" />
27+
<file src="..\bin\Release\$id$.pdb" target="lib\Net45\" />
28+
<file src="..\bin\Release\$id$.xml" target="lib\Net45\" />
29+
<file src="..\bin\Release\$id$.dll" target="lib\dnx451\" />
30+
<file src="..\bin\Release\$id$.pdb" target="lib\dnx451\" />
31+
<file src="..\bin\Release\$id$.xml" target="lib\dnx451\" />
32+
<file src="..\bin\Release\$id$.dll" target="lib\dnxcore50\" />
33+
<file src="..\bin\Release\$id$.pdb" target="lib\dnxcore50\" />
34+
<file src="..\bin\Release\$id$.xml" target="lib\dnxcore50\" />
2435
</files>
2536
</package>

GlobalAssemblyInfo.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
[assembly: AssemblyCompany("AlphaSierraPapa")]
4+
// General Information about an assembly is controlled through the following
5+
// set of attributes. Change these attribute values to modify the information
6+
// associated with an assembly.
7+
[assembly: AssemblyCompany("ICSharpCode")]
58
[assembly: AssemblyProduct("SharpZipLib (#ziplib)")]
69
[assembly: AssemblyCopyright("Copyright © 2000-2016 AlphaSierraPapa for the SharpZipLib Team")]
710
[assembly: AssemblyTrademark("")]
Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
<Playlist Version="1.0">
2+
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.ResetTest" />
3+
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest" />
4+
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest1" />
5+
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest2" />
6+
<Add Test="ICSharpCode.SharpZipLib.Tests.BZip2.BZip2Suite.BasicRoundTrip" />
7+
<Add Test="ICSharpCode.SharpZipLib.Tests.BZip2.BZip2Suite.CreateEmptyArchive" />
8+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.CloseDeflatorWithNestedUsing" />
9+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.CloseInflatorWithNestedUsing" />
10+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.DeflatorStreamOwnership" />
11+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflateDeflateNonZlib" />
12+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflateDeflateZlib" />
13+
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflatorStreamOwnership" />
14+
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.FilterQuoting" />
15+
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.NullFilter" />
16+
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.ValidFilter" />
17+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DelayedHeaderWriteNoData" />
18+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DelayedHeaderWriteWithData" />
19+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DoubleClose" />
20+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DoubleFooter" />
21+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.InputStreamOwnership" />
22+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.OutputStreamOwnership" />
23+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.TestGZip" />
24+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.WriteAfterClose" />
25+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.WriteAfterFinish" />
26+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.ZeroLengthInputStream" />
27+
<Add Test="ICSharpCode.SharpZipLib.Tests.LZW.LzwTestSuite.InputStreamOwnership" />
28+
<Add Test="ICSharpCode.SharpZipLib.Tests.LZW.LzwTestSuite.ZeroLengthInputStream" />
29+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.BlockFactorHandling" />
30+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.Checksum" />
31+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.CloningAndUniqueness" />
32+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.EmptyTar" />
33+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.HeaderEquality" />
34+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InputStreamOwnership" />
35+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidLinkName" />
36+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidMagic" />
37+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidModTime" />
38+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidName" />
39+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidSize" />
40+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidVersionName" />
41+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.LongNames" />
42+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.OutputStreamOwnership" />
43+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.TrailerContainsNulls" />
44+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.UserAndGroupNames" />
45+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.ValuesPreserved" />
46+
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Basic" />
47+
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Buffered" />
48+
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Threaded" />
49+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.Basics" />
50+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.CreateExceptions" />
51+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.Encryption" />
52+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractEmptyDirectories" />
53+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractExceptions" />
54+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.NonAsciiPasswords" />
55+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ReadingOfLockedDataFiles" />
56+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.UnicodeText" />
57+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.AddEntryAfterFinish" />
58+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflated" />
59+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedEncrypted" />
60+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedEncryptedNonSeekable" />
61+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedNonSeekable" />
62+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStored" />
63+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredEncrypted" />
64+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredEncryptedNonSeekable" />
65+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredNonSeekable" />
66+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.CloseOnlyHandled" />
67+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.ExerciseGetNextEntry" />
68+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordNonSeekable" />
69+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordSeekable" />
70+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.MixedEncryptedAndPlain" />
71+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.NameConversion" />
72+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.PartialStreamClosing" />
73+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.PasswordCheckingWithDateInExtraData" />
74+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SerializedObject" />
75+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SerializedObjectZeroLength" />
76+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SetCommentOversize" />
77+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SkipEncryptedEntriesWithoutSettingPassword" />
78+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableConvertToDeflate" />
79+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableKnownSizeNoCrc" />
80+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableKnownSizeNoCrcEncrypted" />
81+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.Stream_UnicodeEntries" />
82+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.UnicodeNameConversion" />
83+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.UnsupportedCompressionMethod" />
84+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseClosedAfterFailure" />
85+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseClosedWhenOwner" />
86+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseNotClosedWhenNotOwner" />
87+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.CreateAndReadEmptyZip" />
88+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.EmptyZipEntries" />
89+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.EntryWithNoDataAndZip64" />
90+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.ParameterHandling" />
91+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.ReadAndWriteZip64NonSeekable" />
92+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.Zip64Descriptor" />
93+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicDirectories" />
94+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicFiles" />
95+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.LengthBoundaryOk" />
96+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.NameTooLong" />
97+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.Replacement" />
98+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.ReplacementChecking" />
99+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.CreateInMemoryValues" />
100+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.CreatedValues" />
101+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.Defaults" />
102+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.CanDecompress" />
103+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.Cloning" />
104+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.Copying" />
105+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.DateAndTime" />
106+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.DateTimeSetsDosTime" />
107+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.NullEntryComment" />
108+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.NullNameInConstructor" />
109+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.BasicOperations" />
110+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.Deleting" />
111+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ExceedSize" />
112+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.IsDataUnique" />
113+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunInt" />
114+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunLong" />
115+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunShort" />
116+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.Skipping" />
117+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.TaggedDataHandling" />
118+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.UnreadCountValid" />
119+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddAndDeleteEntries" />
120+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddAndDeleteEntriesMemory" />
121+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddEncryptedEntriesToExistingArchive" />
122+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddToEmptyArchive" />
123+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.ArchiveTesting" />
124+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.BasicEncryption" />
125+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.BasicEncryptionToDisk" />
126+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.CreateEmptyArchive" />
127+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Crypto_AddEncryptedEntryToExistingArchiveDirect" />
128+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Crypto_AddEncryptedEntryToExistingArchiveSafe" />
129+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.EmbeddedArchive" />
130+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntriesInArchiveExtraData" />
131+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntriesInArchiveWithLongComment" />
132+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntry" />
133+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.HandlesNoEntries" />
134+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NameFactory" />
135+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NestedArchive" />
136+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NullStreamDetected" />
137+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.RoundTrip" />
138+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.RoundTripInMemory" />
139+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.TestDirectoryEntry" />
140+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.TestEncryptedDirectoryEntry" />
141+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UnicodeNames" />
142+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UnreferencedZipFileClosingPartialStream" />
143+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UpdateCommentOnlyInMemory" />
144+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UpdateCommentOnlyOnDisk" />
145+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Entries" />
146+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Offset" />
147+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Useage" />
148+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.Basic" />
149+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.FilenameCleaning" />
150+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.LengthBoundaryOk" />
151+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.NameTransforms" />
152+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.PathalogicalNames" />
153+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.TooLong" />
154+
</Playlist>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Playlist Version="1.0">
2+
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.ZeroLengthInputStream" />
3+
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.LongNames" />
4+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.CreateExceptions" />
5+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractExceptions" />
6+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ReadingOfLockedDataFiles" />
7+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordNonSeekable" />
8+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordSeekable" />
9+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicDirectories" />
10+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicFiles" />
11+
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.Replacement" />
12+
</Playlist>

0 commit comments

Comments
 (0)