2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

fix: test: enable shell-based rndc system tests

Enable existing rndc system tests (the python test function calling the
shell file was missing). Also update the extra artifacts list to remove
one generated file which was left behind.

Merge branch 'colin/rndc-tests' into 'main'

See merge request isc-projects/bind9!10489
This commit is contained in:
Colin Vidal
2025-05-28 15:44:21 +00:00

View File

@@ -18,7 +18,7 @@ pytestmark = pytest.mark.extra_artifacts(
"rndc.out.*",
"ns2/*.jnl",
"ns2/named.stats",
"ns2/named_dump.db.*",
"ns2/named_dump.db*",
"ns2/nil.db",
"ns2/other.db",
"ns2/secondkey.conf",
@@ -37,3 +37,7 @@ pytestmark = pytest.mark.extra_artifacts(
"ns7/test.db.jnl",
]
)
def test_rndc(run_tests_sh):
run_tests_sh()