mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-25 09:16:41 +00:00
Add a .net Fuse test suite for the Z80 core (one "unexpected" result).
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -30,7 +30,7 @@ namespace Fuse
|
||||
|
||||
protected virtual void ParseInternalState(string line)
|
||||
{
|
||||
var tokens = line.Split(new char[] { ' ', '\t' });
|
||||
var tokens = line.Split(new char[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
this.ParseInternalState(tokens);
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ namespace Fuse
|
||||
|
||||
private bool TryParseLine(string line)
|
||||
{
|
||||
var split = line.Split(new char[] { ' ', '\t' });
|
||||
var split = line.Split(new char[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
return this.TryParseLine(split);
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ namespace Fuse
|
||||
|
||||
public void Parse(Lines lines)
|
||||
{
|
||||
var success = false;
|
||||
bool success;
|
||||
do
|
||||
{
|
||||
var e = new TestEvent();
|
||||
|
||||
Reference in New Issue
Block a user