Files
Aaru/Aaru.Tests/Issues/441.cs

24 lines
831 B
C#
Raw Normal View History

2022-03-07 07:36:44 +00:00
namespace Aaru.Tests.Issues;
2021-03-09 03:19:05 +00:00
using System.Collections.Generic;
using System.IO;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/441
*
* SilasLaspada commented on Nov 11, 2020
*
* When trying to extract files from a Zip 100 Aaruf image, some files can't be extracted due to the error
* "Error EINVAL reading file".
*/
2021-03-09 03:19:05 +00:00
2022-03-06 13:29:38 +00:00
public class _441 : FsExtractIssueTest
{
2022-11-13 05:48:58 +00:00
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue441");
2022-03-06 13:29:38 +00:00
public override string TestFile => "Zip-100_aaru_5.2.aaruf";
2022-03-07 07:36:44 +00:00
public override Dictionary<string, string> ParsedOptions => new();
2022-03-06 13:29:38 +00:00
public override bool Debug => true;
public override bool Xattrs => false;
public override string Encoding => null;
public override bool ExpectPartitions => true;
public override string Namespace => null;
2021-03-09 03:19:05 +00:00
}