2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-23 02:28:55 +00:00

Mark the test_named_shutdown[rndc] test as xfail

It is currently affected by #4060, making the unstable as it
occassionally fails.
This commit is contained in:
Tom Krizek 2023-06-26 15:22:32 +02:00
parent ceed694659
commit 5f85f63bf1
No known key found for this signature in database
GPG Key ID: 01623B9B652A20A7

View File

@ -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")