]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Drop doh and geoip from pairwise testing exclusion list
authorMichal Nowak <mnowak@isc.org>
Wed, 22 Oct 2025 17:27:06 +0000 (19:27 +0200)
committerAydın Mercan <aydin@isc.org>
Fri, 24 Oct 2025 11:35:28 +0000 (14:35 +0300)
doh and geoip features can be part of pairwise testing. Their exclusion
was a misunderstanding.

util/pairwise-construct.jq

index 44c6553c520f7059fbf9cff8b8a9f6161c9f1c1e..b81b1a21b66fcc01900b072a760c222489d6ddf2 100755 (executable)
@@ -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]