mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-06 05:21:05 +03:00
11 lines
197 B
Bash
Executable File
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
|