echoping/SRC/test-echoping-plugins

21 lines
365 B
Plaintext
Raw Normal View History

2004-07-20 14:19:49 +00:00
#!/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
2004-07-25 20:04:47 +00:00
if [ -x ./test.sh ]; then
2004-07-20 14:19:49 +00:00
echo "Testing $plugin..."
sh ./test.sh
echo ""
fi
cd ../..
fi
done