mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
chg: test: 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. Merge branch 'nicki/disable-statschannel-rtt-on-freebsd' into 'main' See merge request isc-projects/bind9!11651
This commit is contained in:
commit
dae57bffba
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