mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
// ReSharper disable StringLiteralTypo
|
|
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
|
|
namespace Aaru.Tests.Issues._590;
|
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/590
|
|
*
|
|
* SilasLaspada commented on June 1, 2021
|
|
*
|
|
* Other images seemingly affected by the same bug
|
|
*/
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
public class asus_driver_gpu_tweak_v1231_2014 : FsExtractHashIssueTest
|
|
{
|
|
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue590",
|
|
"asus-driver-gpu-tweak-v1231-2014");
|
|
protected override string TestFile => "V1231.aaruf";
|
|
protected override Dictionary<string, string> ParsedOptions => new();
|
|
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;
|
|
} |