using System.Collections.Generic; using System.IO; namespace Aaru.Tests.Issues { /* https://github.com/aaru-dps/Aaru/issues/360 * * claunia commented on May 20, 2020 * * ISO9660 filesystem from HP9000 cannot be read */ // 20201107 CLAUNIA: Fixed in c45f1bff6d75a2e31b2b2d889455eefd3262b2cc // 20210307 CLAUNIA: Reopened public class _360 : FsExtractIssueTest { public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue360"); public override string TestFile => "AAAA.iso.xz"; public override Dictionary ParsedOptions => new Dictionary(); 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; } }