Version 1.08 with public source code release.

This commit is contained in:
icex2
2020-10-03 20:56:55 +02:00
parent 656148121d
commit 762bf140c0
555 changed files with 55502 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
for i in "$1"/bin/test-*; do
test="$(basename $i)"
echo "Running test $test..."
"$i" || exit 1
done
echo "All tests successful"
exit 0