mirror of
https://github.com/pumpitupdev/pumptools.git
synced 2026-09-22 22:28:03 +03: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 |