From: Jan Hák Date: Wed, 31 Jul 2024 08:17:25 +0000 (+0200) Subject: tests-extra: change knsupdate wrapper in tests to respect parameter changes in knsupdate X-Git-Tag: v3.4.0~40^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd03e033ead992ee1f42956bc8a1d88ce82e8096;p=thirdparty%2Fknot-dns.git tests-extra: change knsupdate wrapper in tests to respect parameter changes in knsupdate --- diff --git a/tests-extra/tools/dnstest/knsupdate.py b/tests-extra/tools/dnstest/knsupdate.py index 4f814bc7cf..4852842607 100644 --- a/tests-extra/tools/dnstest/knsupdate.py +++ b/tests-extra/tools/dnstest/knsupdate.py @@ -57,11 +57,11 @@ class Knsupdate: cmdline = [params.knsupdate_bin] if proto is Proto.TCP: - cmdline += ["-v"] - elif proto is Proto.TLS: cmdline += ["-T"] + elif proto is Proto.TLS: + cmdline += ["-S"] elif proto is Proto.QUIC: - cmdline += ["-q"] + cmdline += ["-Q"] if self.tsig: cmdline += ["-y", f"{self.tsig.alg}:{self.tsig.name}:{self.tsig.key}"]