diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-05-10 06:29:52 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-10 06:29:52 +0000 | 
| commit | 135394f511d03f34bf634c3b1410af95bc7535ec (patch) | |
| tree | 028caca57a34eb0e99f5286dc3916eaf2aee33a3 | |
| parent | fe065dc851fef90c4aa40bc16a3e35af2897fe04 (diff) | |
don't use -i when checking for our own server
| -rwxr-xr-x | tests/runtests.pl | 2 | 
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;  | 
