mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
26 lines
941 B
C#
26 lines
941 B
C#
|
|
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", "Pending", "issue360");
|
||
|
|
public override string TestFile => "AAAA.iso.xz";
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|