Execute all build programs script added

This commit is contained in:
2019-05-07 19:43:51 +02:00
parent c1e498dfa0
commit fdb376f360

9
test/execute-all.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
programs=$(ls *.out)
for p in $programs; do
echo "Running $p ..."
./$p
echo ""
done;