diff --git a/bin/tests/system/conftest.py b/bin/tests/system/conftest.py index 095c8e7222..7530473909 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: