Carp/benchmarks.sh
2020-05-11 12:40:31 +01:00

11 lines
205 B
Bash
Executable File

#!/usr/bin/env bash
set -e; # will make the script stop if there are any errors
# Actual tests (using the test suite)
for f in ./bench/*.carp; do
echo $f
./carp.sh -x --optimize $f
echo
done