mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-22 18:17:05 -04:00
Disable statschannel RTT tests on FreeBSD
These tests rely on somewhat precise timing, as they test that answers arrive in a particular latency bucket within the statschannel stats. These tests are affected by various timing and network issues on our FreeBSD CI runners and the results are very unstable. Skip these on FreeBSD entirely.
This commit is contained in:
parent
b8f19c6ce8
commit
495be0bb9e
2 changed files with 2 additions and 0 deletions
|
|
@ -135,6 +135,7 @@ def test_traffic_json(statsport):
|
|||
generic.test_traffic(fetch_traffic_json, statsip="10.53.0.2", statsport=statsport)
|
||||
|
||||
|
||||
@pytest.mark.skipif(isctest.mark.is_host_freebsd(), reason="unstable on FreeBSD")
|
||||
@pytest.mark.flaky(max_runs=2)
|
||||
def test_rtt_json(statsport):
|
||||
generic.test_rtt(fetch_rtt_json, statsip="10.53.0.4", statsport=statsport)
|
||||
|
|
|
|||
|
|
@ -181,6 +181,7 @@ def test_traffic_xml(statsport):
|
|||
generic.test_traffic(fetch_traffic_xml, statsip="10.53.0.2", statsport=statsport)
|
||||
|
||||
|
||||
@pytest.mark.skipif(isctest.mark.is_host_freebsd(), reason="unstable on FreeBSD")
|
||||
@pytest.mark.flaky(max_runs=2)
|
||||
def test_rtt_xml(statsport):
|
||||
generic.test_rtt(fetch_rtt_xml, statsip="10.53.0.4", statsport=statsport)
|
||||
|
|
|
|||
Loading…
Reference in a new issue