aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libtest/test1013.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/test1013.pl')
-rwxr-xr-xtests/libtest/test1013.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl
index 99ad524e..b680273d 100755
--- a/tests/libtest/test1013.pl
+++ b/tests/libtest/test1013.pl
@@ -18,11 +18,12 @@ while( <CURL> )
}
close CURL;
+$curl_protocols =~ s/\r//;
$curl_protocols =~ /\w+: (.*)$/;
@curl = split / /,$1;
# These features are not supported by curl-config
-@curl = grep(!/^(Debug|TrackMemory|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl);
+@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv)$/i, @curl);
@curl = sort @curl;
# Read the output of curl-config
@@ -31,6 +32,7 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis
while( <CURLCONFIG> )
{
chomp;
+ # ignore curl-config --features not in curl's feature list
push @curl_config, lc($_);
}
close CURLCONFIG;