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