Files
Aaru/Aaru.Tests/Issues/176.cs

22 lines
1.0 KiB
C#
Raw Normal View History

2021-03-07 17:23:23 +00:00
using System.IO;
using NUnit.Framework;
namespace Aaru.Tests.Issues;
2022-03-06 13:29:38 +00:00
/*
* SilasLaspada commented on May 13, 2018
* Trying to convert an MDF/MDS file pair that is CD-ROM XA that has 2 tracks results in the program crashing
* with the command window having been spammed with "Converting sectors x to x in track 2 (xx.xx% done)Error
* Can't found track containing x writing sector x, continuing..." before the crash. A very similar crash occurs
* when dumping the disc to MDF/MDS. The image is dumped correctly when using the BIN/CUE format. I have had the
* same issue with similar CD-ROM XA discs, but seemingly only if they had multiple tracks. I attached all the logs
* and I'll try to get a link to the image file up ASAP, let me know if you need anything else!
*/
2021-03-07 17:23:23 +00:00
2022-03-06 13:29:38 +00:00
// CLAUNIA: Fixed in bdaece414e5f1329610dcbc4a490ebe7ab1ad43e
[TestFixture]
public class _176 : OpticalImageReadIssueTest
{
2022-11-13 05:48:58 +00:00
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue176");
2022-03-06 13:29:38 +00:00
public override string TestFile => "WEBBEARS.mds";
2021-03-07 17:23:23 +00:00
}