From: Michal Nowak Date: Thu, 5 Dec 2024 11:54:38 +0000 (+0100) Subject: Add rr-related common test artifacts X-Git-Tag: v9.21.4~32^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c607237b77f6cb56b51195f37685b83c73487fb6;p=thirdparty%2Fbind9.git Add rr-related common test artifacts --- diff --git a/bin/tests/system/conftest.py b/bin/tests/system/conftest.py index 095c8e72224..7530473909c 100644 --- a/bin/tests/system/conftest.py +++ b/bin/tests/system/conftest.py @@ -310,13 +310,20 @@ def logger(request, system_test_name): def expected_artifacts(request): common_artifacts = [ ".libs/*", # possible build artifacts, see GL #5055 - "ns*/named.run", - "ns*/named.run.prev", "ns*/named.conf", "ns*/named.memstats", + "ns*/named.run", + "ns*/named.run.prev", "pytest.log.txt", ] + if "USE_RR" in os.environ: + common_artifacts += [ + "ns*/cpu_lock", + "ns*/latest-trace", + "ns*/named-[0-9]*", + ] + try: test_specific_artifacts = request.node.get_closest_marker("extra_artifacts") except AttributeError: