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:
Adrian Conlon
2019-08-13 22:24:04 +01:00
parent 63ef445a78
commit 9550ed57be
13 changed files with 28728 additions and 3 deletions
+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -14,7 +14,7 @@ namespace Fuse
public void Parse(Lines lines)
{
var success = false;
bool success;
do
{
var e = new TestEvent();