aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-10 06:29:52 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-10 06:29:52 +0000
commit135394f511d03f34bf634c3b1410af95bc7535ec (patch)
tree028caca57a34eb0e99f5286dc3916eaf2aee33a3 /tests/runtests.pl
parentfe065dc851fef90c4aa40bc16a3e35af2897fe04 (diff)
don't use -i when checking for our own server
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 005585987..e1fbfa126 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -372,7 +372,7 @@ sub runhttpserver {
my $verified;
for(1 .. 10) {
# verify that our server is up and running:
- my $data=`$CURL --silent -i $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
+ my $data=`$CURL --silent $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
if ( $data =~ /WE ROOLZ: (\d+)/ ) {
$pid = 0+$1;