mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-09 01:10:38 +00:00
24 lines
512 B
Bash
Executable File
24 lines
512 B
Bash
Executable File
#!/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. Also, it depends on"
|
|
echo " a local proxy cache named 'cache'."
|
|
|
|
if [ "x$PROXY_PORT" = "x" ]; then
|
|
PROXY_PORT=3128
|
|
fi
|
|
|
|
./echoping -h http://www.netaktiv.com/ cache:$PROXY_PORT
|
|
|
|
./echoping -h http://www.freenix.org/ cache:$PROXY_PORT
|
|
|
|
./echoping -a -h http://www.freenix.org/ cache:$PROXY_PORT
|
|
|
|
./echoping -A -h http://www.freenix.org/ cache:$PROXY_PORT
|
|
|
|
|
|
|