1
0
Fork 0
knot/distro/pkg/deb-nolibxdp/tests/kdig
Daniel Baumann 70063ca008
Adding upstream version 3.4.6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:47:52 +02:00

14 lines
355 B
Bash
Executable file

#!/bin/bash
set -e
# Skip the test if no internet access
ping -c1 1.1.1.1 2>&1 || exit 77
expected=198.41.0.4
answer=$(kdig +short +tls-ca @1.1.1.1 -q a.root-servers.net. -t A 2>&1 || true)
if [ "$answer" != "$expected" ]; then
printf "expected: %s\ngot: %s\n" "$expected" "$answer" >&2
kdig -d +tls-ca @1.1.1.1 -q a.root-servers.net. -t A
fi