From 185a8ea39b1dbd795aa54b7b9c82e393a9185765 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Fri, 6 Dec 2013 19:53:07 +0100 Subject: Corrected many bugs, improved error reporting. --- src/test.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/test.sh') diff --git a/src/test.sh b/src/test.sh index 34a6997..525be77 100755 --- a/src/test.sh +++ b/src/test.sh @@ -36,7 +36,7 @@ for a in ../tests/exec/*.cpp; do done; echo "---" -echo "Testing TYPING/GOOD for typing" +echo "Testing TYPING/" for a in ../tests/typing/good/*.cpp; do if ./main.byte $a; then echo "OK $a"; @@ -50,3 +50,12 @@ for a in ../tests/typing/bad/*.cpp; do else echo "OK $a"; fi; done; + +echo "---" +echo "Testing EXEC/ only against typing" +for a in ../tests/exec/*.cpp; do + if ./main.byte --type-only $a; + then echo "OK $a"; + else echo "FAIL $a"; + fi; +done; -- cgit v1.2.3