This commit is contained in:
ProgramSnail 2024-12-16 10:50:09 +03:00
parent 7784696b65
commit b25d441287
3 changed files with 48 additions and 30 deletions

18
byterun/regression_check.sh Executable file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
dune build > /dev/null
prefix="../regression/"
suffix=".lama"
for test in ../regression/*.lama; do
echo $test
lamac -b $test > /dev/null
./byterun.exe -v test*.bc > /dev/null
rm test*.bc
echo "done"
done
rm test.bc
rm *.o