Carp/benchmarks.sh
2019-09-20 23:39:04 +02:00

11 lines
197 B
Bash
Executable File

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