summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-05-18 17:07:29 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-05-18 17:07:29 +0200
commit71ea31ae74c7d075e1a7e1c12f8ce34fa25cb8b6 (patch)
tree45a222c7a0bf9e78710091d64b41b795b48d01f1
parent313b274b9d60554217954939427f49337d7d4e9e (diff)
downloadcurl-71ea31ae74c7d075e1a7e1c12f8ce34fa25cb8b6.tar.gz
test1014: GSS-API is only in curl-config. not in curl
Follow-up to commit 121bcfee5d1. curl-config --features now lists GSS-API but it is not a listed feature in curl -V. This should probably be synchronized.
-rwxr-xr-xtests/libtest/test1013.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl
index 15e121415..37f98d74c 100755
--- a/tests/libtest/test1013.pl
+++ b/tests/libtest/test1013.pl
@@ -32,7 +32,10 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what lis
while( <CURLCONFIG> )
{
chomp;
- push @curl_config, lc($_);
+ # ignore curl-config --features not in curl's feature list
+ if(!/^(GSS-API)$/) {
+ push @curl_config, lc($_);
+ }
}
close CURLCONFIG;