diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-16 17:05:12 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-16 17:05:12 +0100 |
commit | f20d043f9d9ace0ed6cd1359c8308c0eb39e0919 (patch) | |
tree | 633b0a91780415e2cf9898e58c9cdf44d2a62e40 /src/test.sh | |
parent | ec7d5bcc03e4bad22b6cc790aa69cb310ec452e4 (diff) | |
download | LPC-Projet-f20d043f9d9ace0ed6cd1359c8308c0eb39e0919.tar.gz LPC-Projet-f20d043f9d9ace0ed6cd1359c8308c0eb39e0919.zip |
Finished parser (all tests pass!)
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; |