Archived
1
0
Fork 0

Added submodules with the spec and the mycology test suite

This commit is contained in:
Julien Dessaux 2021-10-07 18:24:48 +02:00
parent e1b1a60bde
commit 8daf3d58fc
5 changed files with 26 additions and 4 deletions

6
.gitmodules vendored Normal file
View file

@ -0,0 +1,6 @@
[submodule "spec"]
path = spec
url = https://github.com/catseye/Funge-98
[submodule "mycology"]
path = mycology
url = https://github.com/Deewiant/Mycology

1
mycology Submodule

@ -0,0 +1 @@
Subproject commit 3787e42c3d4f0b735a09129a205e3e4df848558c

1
spec Submodule

@ -0,0 +1 @@
Subproject commit 7b4330df1a624c464f01c80090b60621ce5a330e

View file

@ -116,11 +116,11 @@ proc Load*(filename: string): ref Field =
f.lines.add(Line()) f.lines.add(Line())
l = addr f.lines[^1] l = addr f.lines[^1]
trailingSpaces = 0 trailingSpaces = 0
if i+1 < n: if data[i] == '\r':
if data[i] == '\r' and data[i+1] == '\n': if i+1 < n and data[i+1] == '\n':
inc i inc i
else: else:
lastReadIsCR = true lastReadIsCR = true
else: else:
if data[i] == ' ': if data[i] == ' ':
if l.l == 0: # trim leading spaces if l.l == 0: # trim leading spaces

14
tests/mycology.nim Normal file
View file

@ -0,0 +1,14 @@
import ../src/field
import ../src/interpreter
import ../src/pointer
import unittest
suite "Mycology":
const filename = "mycology/mycology.b98"
var f = Load(filename)
check f != nil
let argv = @[filename]
var p = NewPointer(argv = argv)
let v = NewInterpreter(f, p)[].Run()
check v == 15