Files
Aaru/Aaru.Tests/Issues/531.cs

26 lines
962 B
C#
Raw Permalink Normal View History

2021-03-09 03:51:50 +00:00
using System.Collections.Generic;
2023-10-05 01:05:23 +01:00
using System.Diagnostics.CodeAnalysis;
2021-03-09 03:51:50 +00:00
using System.IO;
namespace Aaru.Tests.Issues;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/531
*
* SilasLaspada commented on Jan 19, 2021
*
* When extracting files from a FAT32 partition found on a DVD-RAM Gen. 1 image, Aaru reports
* "Error reading file: Object reference not set to an instance of an object.".
*/
2021-03-09 03:51:50 +00:00
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public class _531 : FsExtractIssueTest
{
2022-11-13 05:48:58 +00:00
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue531");
2022-03-06 13:29:38 +00:00
public override string TestFile => "DVD-RAM-GEN1_aaru_5.3.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:51:50 +00:00
}