Files
Aaru/Aaru.Tests/Issues/360.cs

27 lines
917 B
C#
Raw Normal View History

2021-03-07 23:22:44 +00:00
using System.Collections.Generic;
2023-10-05 01:05:23 +01:00
using System.Diagnostics.CodeAnalysis;
2021-03-07 23:22:44 +00:00
using System.IO;
namespace Aaru.Tests.Issues;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/360
*
* claunia commented on May 20, 2020
*
* ISO9660 filesystem from HP9000 cannot be read
*/
2022-03-06 13:29:38 +00:00
// 20201107 CLAUNIA: Fixed in c45f1bff6d75a2e31b2b2d889455eefd3262b2cc
// 20210307 CLAUNIA: Reopened
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public class _360 : FsExtractIssueTest
{
2022-11-13 05:48:58 +00:00
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue360");
2022-03-06 13:29:38 +00:00
public override string TestFile => "AAAA.iso.xz";
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-07 23:22:44 +00:00
}