From d85610f07d26b68c100c89725d4906609be2bb10 Mon Sep 17 00:00:00 2001 From: Colin Vidal Date: Wed, 28 May 2025 15:15:56 +0200 Subject: [PATCH] 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. (cherry picked from commit f84065a32c393daa32e8236b440ac6f2ecdeedc8) --- bin/tests/system/rndc/tests_sh_rndc.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/tests/system/rndc/tests_sh_rndc.py b/bin/tests/system/rndc/tests_sh_rndc.py index c7ab007983..9a553353b8 100644 --- a/bin/tests/system/rndc/tests_sh_rndc.py +++ b/bin/tests/system/rndc/tests_sh_rndc.py @@ -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()