diff options
Diffstat (limited to 'src/test.sh')
-rwxr-xr-x | src/test.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test.sh b/src/test.sh index 13b1c47..fc241bf 100755 --- a/src/test.sh +++ b/src/test.sh @@ -25,3 +25,12 @@ for a in ../tests/typing/*/*.cpp; do else echo "FAIL $a"; fi; done; + +echo "---" +echo "Testing EXEC/ only against parsing" +for a in ../tests/exec/*.cpp; do + if ./main.byte -parse-only $a; + then echo "OK $a"; + else echo "FAIL $a"; + fi; +done; |