Carp/benchmarks.sh
2018-02-06 09:02:46 +01:00

14 lines
221 B
Bash
Executable File

#!/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