copy from other repository
This commit is contained in:
18
streamApp/tests/testall
Executable file
18
streamApp/tests/testall
Executable file
@ -0,0 +1,18 @@
|
||||
for i in test*
|
||||
do
|
||||
if [ $i != testall -a -x $i ]
|
||||
then
|
||||
echo $i
|
||||
if ! $i
|
||||
then
|
||||
echo "Failed."
|
||||
(( fail++ ))
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$fail" ]
|
||||
then echo "$fail tests failed"
|
||||
else echo "All tests passsed."
|
||||
fi
|
||||
exit $fail
|
Reference in New Issue
Block a user