mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
25 lines
938 B
C#
25 lines
938 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Aaru.Tests.Issues
|
||
|
|
{
|
||
|
|
/* 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".
|
||
|
|
*/
|
||
|
|
|
||
|
|
public class _441 : FsExtractIssueTest
|
||
|
|
{
|
||
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Pending", "issue441");
|
||
|
|
public override string TestFile => "Zip-100_aaru_5.2.aaruf";
|
||
|
|
public override Dictionary<string, string> ParsedOptions => new Dictionary<string, string>();
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|