12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
TESTS="@tests@"
|
|
for test in $TESTS; do
|
|
echo ===========================
|
|
echo Test: $test
|
|
$test
|
|
ret=$?
|
|
if [ $? -ne 0 ] ; then
|
|
exit $ret
|
|
fi
|
|
done # | tee | grep "Tests"
|