chg: test: xfail upforwd system test if DNSTAP is enabled

See isc-projects/bind9#4996

Merge branch 'mnowak/mark-upforwd-xfail' into 'main'

See merge request isc-projects/bind9!9662
This commit is contained in:
Michal Nowak 2024-10-21 10:52:26 +00:00
commit e122d9428c
2 changed files with 9 additions and 0 deletions

View file

@ -33,6 +33,10 @@ def feature_test(feature):
return True
def with_dnstap(*args): # pylint: disable=unused-argument
return feature_test("--enable-dnstap")
def with_tsan(*args): # pylint: disable=unused-argument
return feature_test("--tsan")

View file

@ -9,6 +9,11 @@
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
import pytest
import isctest.mark
@pytest.mark.xfail(reason="GL #4996", condition=isctest.mark.with_dnstap())
def test_upforwd(run_tests_sh):
run_tests_sh()