From 45abc5d01f1d7c56ad920d27403c3b4ba7ebc7e7 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Mon, 25 May 2026 08:17:02 +0000 Subject: [PATCH] Register orphaned diff and skr unit tests in meson build Both test files existed on disk but were never added to the meson test list when the build system switched from autoconf. skr_test.c also had a spurious #include for a header that never existed in this repo -- no symbols from it were used. Removing the include is the only fix needed; the test itself is correct and passes. Assisted-by: Claude:claude-opus-4-7 --- tests/dns/meson.build | 2 ++ tests/dns/skr_test.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/dns/meson.build b/tests/dns/meson.build index a13482f9d9..3808c559bc 100644 --- a/tests/dns/meson.build +++ b/tests/dns/meson.build @@ -18,6 +18,7 @@ dns_tests = [ 'dbiterator', 'dbversion', 'deleg', + 'diff', 'dispatch', 'dns64', 'dst', @@ -40,6 +41,7 @@ dns_tests = [ 'resolver', 'rsa', 'sigs', + 'skr', 'time', 'transport', 'tsig', diff --git a/tests/dns/skr_test.c b/tests/dns/skr_test.c index 55b533dc52..8f29f304f3 100644 --- a/tests/dns/skr_test.c +++ b/tests/dns/skr_test.c @@ -40,7 +40,6 @@ #include #include #include -#include #include "zone_p.h"