mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-03-27 09:29:36 +00:00
Correct: Fuse error count + expected versus actual register checking.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
6c20f49c05
commit
9ca85428e0
@ -126,12 +126,12 @@ namespace Fuse
|
||||
|
||||
if (expectedHigh != actualHigh)
|
||||
{
|
||||
DumpDifference(highDescription, actualHigh, expectedHigh);
|
||||
DumpDifference(highDescription, expectedHigh, actualHigh);
|
||||
}
|
||||
|
||||
if (expectedLow != actualLow)
|
||||
{
|
||||
DumpDifference(lowDescription, actualLow, expectedLow);
|
||||
DumpDifference(lowDescription, expectedLow, actualLow);
|
||||
}
|
||||
}
|
||||
|
||||
@ -410,8 +410,10 @@ namespace Fuse
|
||||
this.DumpActualEvents();
|
||||
}
|
||||
|
||||
this.Failed = eventFailure;
|
||||
|
||||
if (!this.Failed)
|
||||
{
|
||||
this.Failed = eventFailure;
|
||||
}
|
||||
}
|
||||
|
||||
private void DumpExpectedEvents()
|
||||
|
Loading…
x
Reference in New Issue
Block a user