mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
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:
commit
e122d9428c
2 changed files with 9 additions and 0 deletions
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue