From: Daniel Stenberg Date: Thu, 26 Nov 2020 16:24:24 +0000 (+0100) Subject: runtests: make 'c-ares' a "feature" to depend on X-Git-Tag: curl-7_74_0~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=082422b189851f5cf8a1132dde8e62a7e9f2baad;p=thirdparty%2Fcurl.git runtests: make 'c-ares' a "feature" to depend on ... also added to the docs. --- diff --git a/tests/FILEFORMAT.md b/tests/FILEFORMAT.md index d0a6d3b21f..ce4459a292 100644 --- a/tests/FILEFORMAT.md +++ b/tests/FILEFORMAT.md @@ -333,6 +333,7 @@ SKIPPED. Features testable here are: - `alt-svc` +- `c-ares` - `cookies` - `crypto` - `debug` diff --git a/tests/runtests.pl b/tests/runtests.pl index fe48ee648c..ac889a5056 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2762,6 +2762,7 @@ sub compare { } sub setupfeatures { + $feature{"c-ares"} = $has_cares; $feature{"alt-svc"} = $has_altsvc; $feature{"HSTS"} = $has_hsts; $feature{"brotli"} = $has_brotli;