mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Add rr-related common test artifacts
(cherry picked from commit c607237b77)
This commit is contained in:
parent
ef5abda0db
commit
ab5309164b
1 changed files with 9 additions and 2 deletions
|
|
@ -358,14 +358,21 @@ def logger(request, system_test_name):
|
|||
def expected_artifacts(request):
|
||||
common_artifacts = [
|
||||
".libs/*", # possible build artifacts, see GL #5055
|
||||
"ns*/named.conf",
|
||||
"ns*/named.lock",
|
||||
"ns*/named.memstats",
|
||||
"ns*/named.run",
|
||||
"ns*/named.run.prev",
|
||||
"ns*/named.conf",
|
||||
"ns*/named.memstats",
|
||||
"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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue