summaryrefslogtreecommitdiff
path: root/src/test.sh
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-16 17:05:12 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-16 17:05:12 +0100
commitf20d043f9d9ace0ed6cd1359c8308c0eb39e0919 (patch)
tree633b0a91780415e2cf9898e58c9cdf44d2a62e40 /src/test.sh
parentec7d5bcc03e4bad22b6cc790aa69cb310ec452e4 (diff)
downloadLPC-Projet-f20d043f9d9ace0ed6cd1359c8308c0eb39e0919.tar.gz
LPC-Projet-f20d043f9d9ace0ed6cd1359c8308c0eb39e0919.zip
Finished parser (all tests pass!)
Diffstat (limited to 'src/test.sh')
-rwxr-xr-xsrc/test.sh9
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;