projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
313b274
)
test1014: GSS-API is only in curl-config. not in curl
author
Daniel Stenberg
<daniel@haxx.se>
Sun, 18 May 2014 15:07:29 +0000
(17:07 +0200)
committer
Daniel Stenberg
<daniel@haxx.se>
Sun, 18 May 2014 15:07:29 +0000
(17:07 +0200)
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.
tests/libtest/test1013.pl
patch
|
blob
|
history
diff --git
a/tests/libtest/test1013.pl
b/tests/libtest/test1013.pl
index 15e121415fc453ca7c0e5e0ccc7e4ae86e26d031..37f98d74cfd4e69a8bd8fd11bfed0610db2bd52b 100755
(executable)
--- 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;