mirror of
https://github.com/pumpitupdev/pumptools.git
synced 2024-11-28 00:20:47 +01:00
13 lines
171 B
Bash
Executable File
13 lines
171 B
Bash
Executable File
#!/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 |