Skip to content

Commit

Permalink
Build NuGet Package
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
McNeight committed Apr 29, 2016
1 parent 53d60da commit 1c0242a
Show file tree
Hide file tree
Showing 9 changed files with 485 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ install:
script:
- xbuild /p:Configuration=Debug ICSharpCode.SharpZipLib.sln
- xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
- 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
- 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
37 changes: 24 additions & 13 deletions Build/ICSharpCode.SharpZipLib.nuspec
Original file line number Diff line number Diff line change
@@ -1,25 +1,36 @@
<?xml version="1.0"?>
<package>
<metadata>
<metadata minClientVersion="2.0">
<id>ICSharpCode.SharpZipLib</id>
<version>1.0.0</version>
<version>0.87</version>
<title>SharpZipLib</title>
<authors>IC#Code</authors>
<owners>IC#Code</owners>
<licenseUrl>https://visualstudiogallery.msdn.microsoft.com/site/68c1575b-e0bf-420d-a94b-1b0f4bcdcbcc/eula?licenseType=None</licenseUrl>
<projectUrl>http://icsharpcode.github.io/SharpZipLib/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Compression library for Zip, GZip, BZip2, LZW, and Tar written entirely in C# for the .NET platform.</description>
<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>
<releaseNotes>Please see https://github.com/icsharpcode/SharpZipLib/wiki/Release-1.0 for more information.</releaseNotes>
<summary>Compression library for Zip, GZip, BZip2, and Tar written entirely in C# for .NET.</summary>
<language>en-US</language>
<projectUrl>http://icsharpcode.github.io/SharpZipLib/</projectUrl>
<!-- iconUrl -->
<licenseUrl>http://icsharpcode.github.io/SharpZipLib/#license</licenseUrl>
<copyright>Copyright © 2000-2016 AlphaSierraPapa for the SharpZipLib Team</copyright>
<tags>Compression Library Zip Gzip BZip2 LZW Tar</tags>
<dependencies>
<dependency id="System" version="1.0.0" />
</dependencies>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- dependencies -->
<!-- references -->
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" />
</frameworkAssemblies>
<tags>Compression Library Zip GZip BZip2 Tar</tags>
</metadata>
<files>
<file src="ICSharpCode.SharpZipLib.dll" target="lib\Net45\" />
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnx451\" />
<file src="ICSharpCode.SharpZipLib.dll" target="lib\dnxcore50\" />
<file src="..\bin\Release\$id$.dll" target="lib\Net45\" />
<file src="..\bin\Release\$id$.pdb" target="lib\Net45\" />
<file src="..\bin\Release\$id$.xml" target="lib\Net45\" />
<file src="..\bin\Release\$id$.dll" target="lib\dnx451\" />
<file src="..\bin\Release\$id$.pdb" target="lib\dnx451\" />
<file src="..\bin\Release\$id$.xml" target="lib\dnx451\" />
<file src="..\bin\Release\$id$.dll" target="lib\dnxcore50\" />
<file src="..\bin\Release\$id$.pdb" target="lib\dnxcore50\" />
<file src="..\bin\Release\$id$.xml" target="lib\dnxcore50\" />
</files>
</package>
5 changes: 4 additions & 1 deletion GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyCompany("AlphaSierraPapa")]
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyCompany("ICSharpCode")]
[assembly: AssemblyProduct("SharpZipLib (#ziplib)")]
[assembly: AssemblyCopyright("Copyright © 2000-2016 AlphaSierraPapa for the SharpZipLib Team")]
[assembly: AssemblyTrademark("")]
Expand Down
154 changes: 154 additions & 0 deletions ICSharpCode.SharpZipLib.Tests/AllTests.playlist
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<Playlist Version="1.0">
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.ResetTest" />
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest" />
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest1" />
<Add Test="ICSharpCode.SharpZipLib.Checksums.Tests.Crc32Tests.UpdateTest2" />
<Add Test="ICSharpCode.SharpZipLib.Tests.BZip2.BZip2Suite.BasicRoundTrip" />
<Add Test="ICSharpCode.SharpZipLib.Tests.BZip2.BZip2Suite.CreateEmptyArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.CloseDeflatorWithNestedUsing" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.CloseInflatorWithNestedUsing" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.DeflatorStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflateDeflateNonZlib" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflateDeflateZlib" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Base.InflaterDeflaterTestSuite.InflatorStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.FilterQuoting" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.NullFilter" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Core.Core.ValidFilter" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DelayedHeaderWriteNoData" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DelayedHeaderWriteWithData" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DoubleClose" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.DoubleFooter" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.InputStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.OutputStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.TestGZip" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.WriteAfterClose" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.WriteAfterFinish" />
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.ZeroLengthInputStream" />
<Add Test="ICSharpCode.SharpZipLib.Tests.LZW.LzwTestSuite.InputStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.LZW.LzwTestSuite.ZeroLengthInputStream" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.BlockFactorHandling" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.Checksum" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.CloningAndUniqueness" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.EmptyTar" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.HeaderEquality" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InputStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidLinkName" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidMagic" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidModTime" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidName" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidSize" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.InvalidVersionName" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.LongNames" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.OutputStreamOwnership" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.TrailerContainsNulls" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.UserAndGroupNames" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.ValuesPreserved" />
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Basic" />
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Buffered" />
<Add Test="ICSharpCode.SharpZipLib.Tests.TestSupport.ExerciseBuffer.Threaded" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.Basics" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.CreateExceptions" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.Encryption" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractEmptyDirectories" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractExceptions" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.NonAsciiPasswords" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ReadingOfLockedDataFiles" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.UnicodeText" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.AddEntryAfterFinish" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflated" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedEncrypted" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedEncryptedNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicDeflatedNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStored" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredEncrypted" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredEncryptedNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.BasicStoredNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.CloseOnlyHandled" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.ExerciseGetNextEntry" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.MixedEncryptedAndPlain" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.NameConversion" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.PartialStreamClosing" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.PasswordCheckingWithDateInExtraData" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SerializedObject" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SerializedObjectZeroLength" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SetCommentOversize" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.SkipEncryptedEntriesWithoutSettingPassword" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableConvertToDeflate" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableKnownSizeNoCrc" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.StoredNonSeekableKnownSizeNoCrcEncrypted" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.Stream_UnicodeEntries" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.UnicodeNameConversion" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.UnsupportedCompressionMethod" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseClosedAfterFailure" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseClosedWhenOwner" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.BaseNotClosedWhenNotOwner" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.CreateAndReadEmptyZip" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.EmptyZipEntries" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.EntryWithNoDataAndZip64" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.ParameterHandling" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.ReadAndWriteZip64NonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.StreamHandling.Zip64Descriptor" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicDirectories" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicFiles" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.LengthBoundaryOk" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.NameTooLong" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.Replacement" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.ReplacementChecking" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.CreateInMemoryValues" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.CreatedValues" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryFactoryHandling.Defaults" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.CanDecompress" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.Cloning" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.Copying" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.DateAndTime" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.DateTimeSetsDosTime" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.NullEntryComment" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipEntryHandling.NullNameInConstructor" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.BasicOperations" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.Deleting" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ExceedSize" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.IsDataUnique" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunInt" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunLong" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.ReadOverrunShort" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.Skipping" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.TaggedDataHandling" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipExtraDataHandling.UnreadCountValid" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddAndDeleteEntries" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddAndDeleteEntriesMemory" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddEncryptedEntriesToExistingArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.AddToEmptyArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.ArchiveTesting" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.BasicEncryption" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.BasicEncryptionToDisk" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.CreateEmptyArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Crypto_AddEncryptedEntryToExistingArchiveDirect" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Crypto_AddEncryptedEntryToExistingArchiveSafe" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.EmbeddedArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntriesInArchiveExtraData" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntriesInArchiveWithLongComment" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.FindEntry" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.HandlesNoEntries" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NameFactory" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NestedArchive" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.NullStreamDetected" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.RoundTrip" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.RoundTripInMemory" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.TestDirectoryEntry" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.TestEncryptedDirectoryEntry" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UnicodeNames" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UnreferencedZipFileClosingPartialStream" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UpdateCommentOnlyInMemory" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.UpdateCommentOnlyOnDisk" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Entries" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Offset" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipFileHandling.Zip64Useage" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.Basic" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.FilenameCleaning" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.LengthBoundaryOk" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.NameTransforms" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.PathalogicalNames" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.ZipNameTransformHandling.TooLong" />
</Playlist>
12 changes: 12 additions & 0 deletions ICSharpCode.SharpZipLib.Tests/FailingTests.playlist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Playlist Version="1.0">
<Add Test="ICSharpCode.SharpZipLib.Tests.GZip.GZipTestSuite.ZeroLengthInputStream" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Tar.TarTestSuite.LongNames" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.CreateExceptions" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ExtractExceptions" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.FastZipHandling.ReadingOfLockedDataFiles" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordNonSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.GeneralHandling.InvalidPasswordSeekable" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicDirectories" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.BasicFiles" />
<Add Test="ICSharpCode.SharpZipLib.Tests.Zip.WindowsNameTransformHandling.Replacement" />
</Playlist>
Loading

0 comments on commit 1c0242a

Please sign in to comment.