Carp/benchmarks.sh

11 lines
205 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2018-02-06 11:02:46 +03:00
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
2019-09-21 00:39:04 +03:00
./carp.sh -x --optimize $f
2018-02-06 11:02:46 +03:00
echo
done