From 5f85f63bf1e044e805b879f5e04437d0f35afb0c Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Mon, 26 Jun 2023 15:22:32 +0200 Subject: [PATCH] Mark the test_named_shutdown[rndc] test as xfail It is currently affected by #4060, making the unstable as it occassionally fails. --- bin/tests/system/shutdown/tests_shutdown.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/tests/system/shutdown/tests_shutdown.py b/bin/tests/system/shutdown/tests_shutdown.py index fffc2d1906..2e2bee6c47 100755 --- a/bin/tests/system/shutdown/tests_shutdown.py +++ b/bin/tests/system/shutdown/tests_shutdown.py @@ -160,10 +160,10 @@ def wait_for_proc_termination(proc, max_timeout=10): # Method 1: using rndc ctop # Method 2: killing with SIGTERM # In both methods named should exit gracefully. -@pytest.mark.parametrize("kill_method", [ - "rndc", - "sigtem" -]) +@pytest.mark.parametrize( + "kill_method", + [pytest.param("rndc", marks=pytest.mark.xfail(reason="GL#4060")), "sigtem"], +) def test_named_shutdown(named_port, control_port, kill_method): # pylint: disable-msg=too-many-locals cfg_dir = os.path.join(os.getcwd(), "resolver")