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 <dns/tls.h> 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
This commit is contained in:
Michal Nowak 2026-05-25 08:17:02 +00:00
parent af1f535e63
commit 45abc5d01f
2 changed files with 2 additions and 1 deletions

View file

@ -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',

View file

@ -40,7 +40,6 @@
#include <dns/secalg.h>
#include <dns/skr.h>
#include <dns/time.h>
#include <dns/tls.h>
#include "zone_p.h"