summaryrefslogtreecommitdiffstats
path: root/tests-extra/tests/dnssec/ds_push
diff options
context:
space:
mode:
authorDaniel Salzman <daniel.salzman@nic.cz>2024-12-28 10:18:55 +0100
committerDaniel Salzman <daniel.salzman@nic.cz>2024-12-28 10:18:55 +0100
commit73f7d5ba42584d6b80edef6e1d709098a46109ed (patch)
treea57322c13f75e4a799aced0468417703af30e6f8 /tests-extra/tests/dnssec/ds_push
parentlibngtcp2: update embedded libngtcp2 to v1.10.0 (diff)
parenttests-extra: remove superfluous C-style semicolons from Python code (diff)
downloadknot-73f7d5ba42584d6b80edef6e1d709098a46109ed.tar.xz
knot-73f7d5ba42584d6b80edef6e1d709098a46109ed.zip
Merge branch 'tests_socket_starting' into 'master'
Fix the servers startup in the functional tests. See merge request knot/knot-dns!1736
Diffstat (limited to 'tests-extra/tests/dnssec/ds_push')
-rw-r--r--tests-extra/tests/dnssec/ds_push/test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests-extra/tests/dnssec/ds_push/test.py b/tests-extra/tests/dnssec/ds_push/test.py
index 6663e9534..66514c003 100644
--- a/tests-extra/tests/dnssec/ds_push/test.py
+++ b/tests-extra/tests/dnssec/ds_push/test.py
@@ -34,10 +34,10 @@ def check_zone(server, zone, dnskeys, dnskey_rrsigs, cdnskeys, soa_rrsigs, msg):
qsoa = server.dig(zone.name, "SOA", dnssec=True, bufsize=4096)
found_soa_rrsigs = qsoa.count("RRSIG")
- check_log("DNSKEYs: %d (expected %d)" % (found_dnskeys, dnskeys));
- check_log("RRSIGs: %d (expected %d)" % (found_soa_rrsigs, soa_rrsigs));
- check_log("DNSKEY-RRSIGs: %d (expected %d)" % (found_rrsigs, dnskey_rrsigs));
- check_log("CDNSKEYs: %d (expected %d)" % (found_cdnskeys, cdnskeys));
+ check_log("DNSKEYs: %d (expected %d)" % (found_dnskeys, dnskeys))
+ check_log("RRSIGs: %d (expected %d)" % (found_soa_rrsigs, soa_rrsigs))
+ check_log("DNSKEY-RRSIGs: %d (expected %d)" % (found_rrsigs, dnskey_rrsigs))
+ check_log("CDNSKEYs: %d (expected %d)" % (found_cdnskeys, cdnskeys))
if found_dnskeys != dnskeys:
set_err("BAD DNSKEY COUNT: " + msg)