mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-15 00:12:48 +00:00
21 lines
365 B
Bash
21 lines
365 B
Bash
#!/bin/sh
|
|
|
|
# $Id$
|
|
|
|
echo ""
|
|
echo "Since this tests tries remote servers, a failure is not always "
|
|
echo " echoping's fault: it may be a network problem."
|
|
echo ""
|
|
|
|
for plugin in `ls plugins`; do
|
|
if [ -d plugins/$plugin ]; then
|
|
cd plugins/$plugin
|
|
if [ -x ./test.sh ]; then
|
|
echo "Testing $plugin..."
|
|
sh ./test.sh
|
|
echo ""
|
|
fi
|
|
cd ../..
|
|
fi
|
|
done
|