mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-05 04:44:12 +03:00
14 lines
221 B
Bash
14 lines
221 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e; # will make the script stop if there are any errors
|
||
|
|
||
|
stack build;
|
||
|
stack install;
|
||
|
|
||
|
# Actual tests (using the test suite)
|
||
|
for f in ./bench/*.carp; do
|
||
|
echo $f
|
||
|
carp -x --optimize $f
|
||
|
echo
|
||
|
done
|