aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-07-22 11:01:04 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-07-23 00:01:39 +0200
commita8206adcade44928ba4e55cd9220a11b5b92035d (patch)
treed4474c68051743e2e5dce5915619ca7adac639e9 /tests
parent3cad5ab77ade45309a73c9f544b3d97ae426310b (diff)
test1013.pl: remove SPNEGO/GSS-API tweaks
No longer necessary after Michael Osipov's rework
Diffstat (limited to 'tests')
-rwxr-xr-xtests/libtest/test1013.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl
index 37f98d74c..e2473c93b 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( <CURLCONFIG> )
{
chomp;
# ignore curl-config --features not in curl's feature list
- if(!/^(GSS-API)$/) {
- push @curl_config, lc($_);
- }
+ push @curl_config, lc($_);
}
close CURLCONFIG;