diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-05-27 23:43:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-05-27 23:43:23 +0200 |
commit | a03100c3577e7843fbe9a4cfcf0f3cdcb4fa34da (patch) | |
tree | 5872cdf3c89119095a5cdc3c9ade2297de2f7a0a /tests/libtest | |
parent | a7731673d02a80d3ab4b6d3be296daa2807025a8 (diff) |
test1013.pl: filter out Metalink
Since it isn't a feature supported by curl-config we can't compare that
with the --version output
Diffstat (limited to 'tests/libtest')
-rwxr-xr-x | tests/libtest/test1013.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl index 99ad524eb..9ea7de02d 100755 --- a/tests/libtest/test1013.pl +++ b/tests/libtest/test1013.pl @@ -22,7 +22,7 @@ $curl_protocols =~ /\w+: (.*)$/; @curl = split / /,$1; # These features are not supported by curl-config -@curl = grep(!/^(Debug|TrackMemory|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl); +@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl); @curl = sort @curl; # Read the output of curl-config |