Home | History | Annotate | Download | only in tests

Lines Matching refs:CURL

13 # are also available at https://curl.haxx.se/docs/copyright.html.
25 # are able to run curl but are unable to run the test harness.
29 # $CLIENTIP, $CLIENT6IP - Set to the address of the host running curl
31 # directory to the system running curl, run the given command remotely
41 # running the test suite, while the rest must be from the host running curl.
51 # the curl binary is read directly to determine its type also need to be
116 my $CLIENTIP="127.0.0.1"; # address which curl uses for incoming connections
117 my $CLIENT6IP="[::1]"; # address which curl uses for incoming connections
150 my $CURL="../src/curl".exe_ext(); # what curl executable to run on the tests
151 my $VCURL=$CURL; # what curl binary to use to verify the servers with
154 my $DBGCURL=$CURL; #"../src/.libs/curl"; # alternative for debugging
160 my $SERVERIN="$LOGDIR/server.input"; # what curl sent the server
161 my $SERVER2IN="$LOGDIR/server2.input"; # what curl sent the second server
162 my $PROXYIN="$LOGDIR/proxy.input"; # what curl sent the proxy
163 my $CURLLOG="$LOGDIR/curl.log"; # all command lines run
166 my $CURLCONFIG="../curl-config"; # curl-config from current build
225 my $has_metalink; # set if curl is built with Metalink support
301 my $run_event_based; # run curl with --test-event to test the event API
331 # enable memory debugging if curl is compiled with it
519 # Check for a command in the PATH of the machine running curl.
535 # This is one way to test curl on a remote machine
548 # This is one way to test curl on a remote machine
770 logmsg "RUN: curl command died with a coredump\n";
775 logmsg "RUN: curl command returned $res\n";
797 # curl: (6) Couldn't resolve host '::1'
844 logmsg "RUN: curl command died with a coredump\n";
907 logmsg "RUN: curl command died with a coredump\n";
912 logmsg "RUN: curl command returned $res\n";
934 # curl: (6) Couldn't resolve host '::1'
1047 logmsg "RUN: curl command died with a coredump\n";
1052 logmsg "RUN: curl command returned $res\n";
1085 # curl: (6) Couldn't resolve host '::1'
2338 # display information about curl and the host the test suite runs on
2345 my $curl;
2353 my $versioncmd="$CURL --version 1>$curlverout 2>$curlvererr";
2369 if($_ =~ /^curl/) {
2370 $curl = $_;
2371 $curl =~ s/^(.*)(libcurl.*)/$1/g;
2374 if($curl =~ /win32|mingw(32|64)/) {
2462 # curl was built with --enable-debug
2551 # run HTTP TLS-SRP tests required when curl is built with https
2571 if(!$curl) {
2572 logmsg "unable to get curl's version, further details are:\n";
2590 die "couldn't get curl's version";
2629 die "can't run torture tests since curl was built without ".
2640 "* $curl\n",
2779 $$thing =~ s/%CURL/$CURL/g;
2863 my ($evbased, # 1 means switch on if possible (and "curl" is tested)
3056 $why = "curl lacks $1 support";
3194 $why = "curl has $1 support";
3389 # this is the valid protocol blurb curl should generate
3392 # this is the valid protocol blurb curl should generate to a proxy
3408 my $CURLOUT="$LOGDIR/curl$testnum.out"; # curl output if not stdout
3522 # run curl, add suitable command line options
3587 $CMDLINE="$CURL";
3894 # what to cut off from the live protocol sent by curl
3967 # what to cut off from the live protocol sent by curl, we use the
4084 (!$tool)?"curl":$tool, $errorcode);
4457 return "curl lacks SSL support";
4495 return "curl lacks SSL support";
4685 return "curl lacks $tlsext support";
4688 return "curl lacks $server server support";
4854 # use this path to curl instead of default
4855 $DBGCURL=$CURL="\"$ARGV[1]\"";
4859 # use this path to a curl used to verify servers
4958 -c path use this curl executable
4973 -vc path use this curl only to verify the existing servers
5035 open(C, "<$CURL");
5058 # open the executable curl and read the first 4 bytes of it
5059 open(CHECK, "<$CURL");
5113 # Output curl version and host info being tested
5268 if(($log =~ /^curl\d+\.out/) && ($log !~ /^curl$testnum\.out/)) {