File: test-echoping-proxy

package info (click to toggle)
echoping 6.0.2-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,596 kB
  • ctags: 380
  • sloc: sh: 8,966; ansic: 3,350; makefile: 162
file content (23 lines) | stat: -rwxr-xr-x 562 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

# $Id: test-echoping-proxy 377 2007-03-12 20:48:05Z bortz $

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.debian.org/ cache:$PROXY_PORT

./echoping -a -h http://www.debian.org/ cache:$PROXY_PORT

./echoping -A -h http://www.debian.org/ cache:$PROXY_PORT