Carp/scripts/benchmarks.sh
2020-11-14 15:28:17 +01:00

11 lines
211 B
Bash
Executable File

#!/usr/bin/env sh
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
./scripts/carp.sh -x --optimize $f
echo
done