From: Michal Nowak Date: Wed, 22 Oct 2025 17:27:06 +0000 (+0200) Subject: Drop doh and geoip from pairwise testing exclusion list X-Git-Tag: v9.21.15~40^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552dced1e5b4f703fca906c79d4e8f6b87ef1324;p=thirdparty%2Fbind9.git Drop doh and geoip from pairwise testing exclusion list doh and geoip features can be part of pairwise testing. Their exclusion was a misunderstanding. --- diff --git a/util/pairwise-construct.jq b/util/pairwise-construct.jq index 44c6553c520..b81b1a21b66 100755 --- a/util/pairwise-construct.jq +++ b/util/pairwise-construct.jq @@ -12,7 +12,7 @@ # information regarding copyright ownership. .[] - | select((.section == "user") and (.name | IN("rcu-flavor", "geoip", "fuzzing", "doh", "fuzzing-backend", "oss-fuzz-args", "fips", "trace-logging") | not)) + | select((.section == "user") and (.name | IN("rcu-flavor", "fuzzing", "fuzzing-backend", "oss-fuzz-args", "fips", "trace-logging") | not)) | ["\(.name):", "-D\(.name)=\(.choices[]),"] | join(" ") | .[:-1]