mirror of
https://github.com/curl/curl.git
synced 2025-09-12 15:12:42 +03:00
parent
b5d565faa8
commit
2583d11f22
|
@ -41,10 +41,6 @@ http://%HOSTIP:%HTTPPORT/%TESTNUMBER
|
||||||
#
|
#
|
||||||
# Verify data after the test has been "shot"
|
# Verify data after the test has been "shot"
|
||||||
<verify>
|
<verify>
|
||||||
<strippart>
|
|
||||||
# remove CR that CURLOPT_TRANSFERTEXT added, when CharConv enabled:
|
|
||||||
s/^(this is what we post to the silly web server)\r\n/$1\n/ if($has_charconv)
|
|
||||||
</strippart>
|
|
||||||
<protocol>
|
<protocol>
|
||||||
POST /%TESTNUMBER HTTP/1.1
|
POST /%TESTNUMBER HTTP/1.1
|
||||||
Host: %HOSTIP:%HTTPPORT
|
Host: %HOSTIP:%HTTPPORT
|
||||||
|
|
|
@ -46,7 +46,7 @@ $curl_protocols =~ /\w+: (.*)$/;
|
||||||
@curl = split / /,$1;
|
@curl = split / /,$1;
|
||||||
|
|
||||||
# These features are not supported by curl-config
|
# These features are not supported by curl-config
|
||||||
@curl = grep(!/^(Debug|TrackMemory|CharConv)$/i, @curl);
|
@curl = grep(!/^(Debug|TrackMemory)$/i, @curl);
|
||||||
@curl = sort @curl;
|
@curl = sort @curl;
|
||||||
|
|
||||||
# Read the output of curl-config
|
# Read the output of curl-config
|
||||||
|
|
|
@ -649,8 +649,6 @@ sub checksystemfeatures {
|
||||||
$feature{"Kerberos"} = $feat =~ /Kerberos/i;
|
$feature{"Kerberos"} = $feat =~ /Kerberos/i;
|
||||||
# SPNEGO enabled
|
# SPNEGO enabled
|
||||||
$feature{"SPNEGO"} = $feat =~ /SPNEGO/i;
|
$feature{"SPNEGO"} = $feat =~ /SPNEGO/i;
|
||||||
# CharConv enabled
|
|
||||||
$feature{"CharConv"} = $feat =~ /CharConv/i;
|
|
||||||
# TLS-SRP enabled
|
# TLS-SRP enabled
|
||||||
$feature{"TLS-SRP"} = $feat =~ /TLS-SRP/i;
|
$feature{"TLS-SRP"} = $feat =~ /TLS-SRP/i;
|
||||||
# PSL enabled
|
# PSL enabled
|
||||||
|
|
Loading…
Reference in New Issue
Block a user