13 lines
152 B
Bash
Executable File
13 lines
152 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
cd $(dirname $0)
|
|
|
|
for TEST in ./tests/* ; do
|
|
if bash $TEST ; then
|
|
echo "success"
|
|
else
|
|
echo "failure"
|
|
exit 1
|
|
fi
|
|
done
|