mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Merge ac4d38c337 into merged_master (Bitcoin PR #16236)
This commit is contained in:
commit
1b9fe24406
2 changed files with 6 additions and 1 deletions
|
|
@ -106,8 +106,10 @@ def run_once(*, corpus, test_list, build_dir, export_coverage):
|
|||
os.path.join(corpus, t),
|
||||
]
|
||||
logging.debug('Run {} with args {}'.format(t, args))
|
||||
output = subprocess.run(args, check=True, stderr=subprocess.PIPE, universal_newlines=True).stderr
|
||||
result = subprocess.run(args, stderr=subprocess.PIPE, universal_newlines=True)
|
||||
output = result.stderr
|
||||
logging.debug('Output: {}'.format(output))
|
||||
result.check_returncode()
|
||||
if not export_coverage:
|
||||
continue
|
||||
for l in output.splitlines():
|
||||
|
|
|
|||
|
|
@ -4,3 +4,6 @@ leak:libqminimal
|
|||
leak:libQt5Core
|
||||
leak:libQt5Gui
|
||||
leak:libQt5Widgets
|
||||
|
||||
# false-positive due to use of secure_allocator<>
|
||||
leak:GetRNGState
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue