Merge ac4d38c337 into merged_master (Bitcoin PR #16236)

This commit is contained in:
Andrew Poelstra 2020-11-06 15:20:16 +00:00
commit 1b9fe24406
2 changed files with 6 additions and 1 deletions

View file

@ -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():

View file

@ -4,3 +4,6 @@ leak:libqminimal
leak:libQt5Core
leak:libQt5Gui
leak:libQt5Widgets
# false-positive due to use of secure_allocator<>
leak:GetRNGState