From 6a51a2798247850723f978a14e642687de259f12 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 28 Mar 2023 17:22:27 +0200 Subject: [PATCH] dnsdist: Wait a bit longer for the process to exit before killing it This prevents a long list of ``` kill... ``` when running with TSAN-enabled. In my tests it did not seem to really slow the build: roughly 3% slower but that might even be in the error margin for these tests. --- regression-tests.dnsdist/dnsdisttests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests.dnsdist/dnsdisttests.py b/regression-tests.dnsdist/dnsdisttests.py index 05de5e1bd6..dfc6ead966 100644 --- a/regression-tests.dnsdist/dnsdisttests.py +++ b/regression-tests.dnsdist/dnsdisttests.py @@ -174,7 +174,7 @@ class DNSDistTest(AssertEqualDNSMessageMixin, unittest.TestCase): return try: p.terminate() - for count in range(10): + for count in range(20): x = p.poll() if x is not None: break -- 2.47.2