diff --git a/test/execute-all.sh b/test/execute-all.sh new file mode 100755 index 0000000..af4dc46 --- /dev/null +++ b/test/execute-all.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +programs=$(ls *.out) + +for p in $programs; do + echo "Running $p ..." + ./$p + echo "" +done;