From: Daniel Stenberg Date: Tue, 22 Jul 2014 09:01:04 +0000 (+0200) Subject: test1013.pl: remove SPNEGO/GSS-API tweaks X-Git-Tag: curl-7_38_0~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8206adcade44928ba4e55cd9220a11b5b92035d;p=thirdparty%2Fcurl.git test1013.pl: remove SPNEGO/GSS-API tweaks No longer necessary after Michael Osipov's rework --- diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl index 37f98d74cf..e2473c93bb 100755 --- a/tests/libtest/test1013.pl +++ b/tests/libtest/test1013.pl @@ -23,7 +23,7 @@ $curl_protocols =~ /\w+: (.*)$/; @curl = split / /,$1; # These features are not supported by curl-config -@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl); +@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate)$/i, @curl); @curl = sort @curl; # Read the output of curl-config @@ -33,9 +33,7 @@ while( ) { chomp; # ignore curl-config --features not in curl's feature list - if(!/^(GSS-API)$/) { - push @curl_config, lc($_); - } + push @curl_config, lc($_); } close CURLCONFIG;