From: Štěpán Balážik Date: Tue, 16 Jun 2026 16:48:33 +0000 (+0200) Subject: fixup! Port TCP high-water checks to Python X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1e99b66041bd593a45e69bf40886420eba6fe69;p=thirdparty%2Fbind9.git fixup! Port TCP high-water checks to Python --- diff --git a/bin/tests/system/tcp/tests_tcp.py b/bin/tests/system/tcp/tests_tcp.py index fc0e4fe13bc..0c0ae7a5b0b 100644 --- a/bin/tests/system/tcp/tests_tcp.py +++ b/bin/tests/system/tcp/tests_tcp.py @@ -422,15 +422,7 @@ def test_tcp_high_water(ns5: NamedInstance, named_port: int) -> None: isctest.log.info("checking TCP query response") check_tcp_response(ns5.ip) - isctest.log.info("TCP and recursive high-water: check initial statistics") - status = TcpStatus.of(ns5) - # start.pl checks whether each named is running using dig over TCP, - # which increments both high-water counters once before tests run. - status.check(current=0, high_water=1, recursive_high_water=1) - - isctest.log.info("TCP and recursive high-water: reset") ns5.rndc("reset-stats tcp-high-water recursive-high-water") - isctest.log.info( "TCP and recursive high-water: check statistics after reset" )