Carp/scripts/benchmarks.sh

11 lines
211 B
Bash
Raw Normal View History

2020-11-14 17:28:17 +03:00
#!/usr/bin/env sh
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
2020-11-09 13:47:15 +03:00
./scripts/carp.sh -x --optimize $f
2018-02-06 11:02:46 +03:00
echo
done