2021-06-02 17:03:17 +01:00
|
|
|
// ReSharper disable StringLiteralTypo
|
|
|
|
|
|
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-11-15 15:58:43 +00:00
|
|
|
namespace Aaru.Tests.Issues._590;
|
|
|
|
|
|
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 win3 : FsExtractHashIssueTest
|
|
|
|
|
{
|
2022-11-13 05:48:58 +00:00
|
|
|
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue590", "win3");
|
2022-03-06 13:29:38 +00:00
|
|
|
protected override string TestFile => "microsoft-windows-3.0-international-versions-promotional-copy.aif";
|
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 => "cp850";
|
|
|
|
|
protected override bool ExpectPartitions => true;
|
|
|
|
|
protected override string Namespace => "romeo";
|
2021-06-02 17:03:17 +01:00
|
|
|
}
|