From: Nicki Křížek Date: Wed, 2 Jul 2025 16:00:16 +0000 (+0200) Subject: Use proper wait in rndc test X-Git-Tag: v9.21.11~67^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87ab198b73ce774cfb15541c32bee42e963c2c9b;p=thirdparty%2Fbind9.git Use proper wait in rndc test Previously, the one-second sleep was unreliable, as it didn't properly indicate that the rndc reconfig has been processed. The "test 'rndc reconfig' with a broken config" check would sometimes fail under TSAN in CI, because the previous rndc reconfig was still ongoing, and the subsequent rndc reconfig was ignored. --- diff --git a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py index 4bad00add4f..7a5ed394e6e 100644 --- a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py +++ b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py @@ -51,6 +51,6 @@ pytestmark = pytest.mark.extra_artifacts( ) -@isctest.mark.flaky(max_runs=3) # GL#4605 +@isctest.mark.flaky(max_runs=5) # GL#4605 def test_enginepkcs11(run_tests_sh): run_tests_sh()