2022-03-07 07:36:44 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
2021-03-08 04:02:50 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/411
|
|
|
|
|
*
|
|
|
|
|
* 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 is:
|
|
|
|
|
*
|
|
|
|
|
* CD 2 ("Master Quiz") of the 10-game pack available here
|
|
|
|
|
*/
|
2021-03-08 04:02:50 +00:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
// 20201106 CLAUNIA: Fixed in d30a6d18cd1f6d8b9075f096bd56e23fc5106dbf
|
|
|
|
|
public class _411 : FsExtractIssueTest
|
|
|
|
|
{
|
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Issues", "Fixed", "issue411");
|
|
|
|
|
public override string TestFile => "CD02 - Master Quiz - Das total abgeflogene Quiz.mds";
|
2022-03-07 07:36:44 +00:00
|
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
2022-03-06 13:29:38 +00:00
|
|
|
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;
|
2021-03-08 04:02:50 +00:00
|
|
|
}
|