diff options
Diffstat (limited to 'tests/libtest')
-rwxr-xr-x | tests/libtest/test1013.pl | 5 |
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; |