From 552dced1e5b4f703fca906c79d4e8f6b87ef1324 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Wed, 22 Oct 2025 19:27:06 +0200 Subject: [PATCH] Drop doh and geoip from pairwise testing exclusion list doh and geoip features can be part of pairwise testing. Their exclusion was a misunderstanding. --- util/pairwise-construct.jq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/pairwise-construct.jq b/util/pairwise-construct.jq index 44c6553c52..b81b1a21b6 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]