Files
Aaru/Aaru.Tests/Issues/410.cs

34 lines
1.3 KiB
C#

using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
namespace Aaru.Tests.Issues;
/* https://github.com/aaru-dps/Aaru/issues/410
*
* darkstar commented on Sep 27, 2020
*
* I have two (original/pressed) CDs that were apparently mastered incorrectly. Neither the physical discs nor the
* dumps (as generated by Aaru, A120% or any other tool) can be read by and "modern"-ish operating system or ISO
* tool. They just show either an empty root directory or abort with an error.
*
* However, both the CDs and the dumps can be read perfectly fine in a VM running Windows 98
*
* The CD in question for this issue is:
*
* MissionForce: Cyberstorm (uploaded to archive.org here )
*/
// 20201106 CLAUNIA: Fixed in d30a6d18cd1f6d8b9075f096bd56e23fc5106dbf
[SuppressMessage("ReSharper", "UnusedType.Global")]
public class _410 : FsExtractIssueTest
{
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue410");
public override string TestFile => "cyberstorm.mds";
public override Dictionary<string, string> ParsedOptions => new();
public override bool Debug => false;
public override bool Xattrs => false;
public override string Encoding => null;
public override bool ExpectPartitions => true;
public override string Namespace => null;
}