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

27 lines
1015 B
C#
Raw Normal View History

2021-06-02 17:03:17 +01:00
using System.Collections.Generic;
using System.IO;
// ReSharper disable StringLiteralTypo
namespace Aaru.Tests.Issues._590
{
/* 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.
*/
public class win3 : FsExtractHashIssueTest
{
protected override string DataFolder =>
Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue590", "win3");
2021-08-17 21:23:10 +01:00
protected override string TestFile => "microsoft-windows-3.0-international-versions-promotional-copy.aif";
protected override Dictionary<string, string> ParsedOptions => new Dictionary<string, string>();
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
}