]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add rr-related common test artifacts
authorMichal Nowak <mnowak@isc.org>
Thu, 5 Dec 2024 11:54:38 +0000 (12:54 +0100)
committerMichal Nowak <mnowak@isc.org>
Tue, 10 Dec 2024 16:31:35 +0000 (17:31 +0100)
bin/tests/system/conftest.py

index 095c8e72224f162c5828492867cab11ecd075e61..7530473909c67dd423e13d34a8f0ba15de2014e6 100644 (file)
@@ -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: