Write invariant tests for desugaring

This commit is contained in:
2024-10-26 15:38:48 +01:00
parent 2bcdfbcd61
commit 9494c08f36
5 changed files with 189 additions and 1 deletions

View File

@@ -3,5 +3,6 @@ cd "$(git rev-parse --show-toplevel)"
fails=0
build/parse_tests || fails=`expr $fails + 1`
build/desugar_tests || fails=`expr $fails + 1`
if [ $fails -eq 0 ]; then echo Tests OK; fi