Files
Aaru/Aaru.Tests/Issues/590/m5a99fx.cs

30 lines
1.1 KiB
C#
Raw Normal View History

2022-03-07 07:36:44 +00:00
2021-06-02 17:03:17 +01:00
// ReSharper disable StringLiteralTypo
2022-03-06 13:29:38 +00:00
namespace Aaru.Tests.Issues._590;
2022-03-07 07:36:44 +00:00
using System.Collections.Generic;
2022-03-15 01:37:37 +00:00
using System.Diagnostics.CodeAnalysis;
2022-03-07 07:36:44 +00:00
using System.IO;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/590
*
* SilasLaspada commented on May 30, 2021
*
* When extracting the files from a specific image, Aaru hangs without crashing.
*/
2021-06-02 17:03:17 +01:00
2022-03-15 01:37:37 +00:00
[SuppressMessage("ReSharper", "InconsistentNaming")]
2022-03-06 13:29:38 +00:00
public class m5a99fx : FsExtractHashIssueTest
{
protected override string DataFolder =>
2022-11-13 05:48:58 +00:00
Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue590", "m5a99fx");
2022-03-06 13:29:38 +00:00
protected override string TestFile => "MB Support CD.aaruf";
2022-03-07 07:36:44 +00:00
protected override Dictionary<string, string> ParsedOptions => new();
2022-03-06 13:29:38 +00:00
protected override bool Debug => false;
protected override bool Xattrs => false;
protected override string Encoding => null;
protected override bool ExpectPartitions => true;
protected override string Namespace => null;
2021-06-02 17:03:17 +01:00
}