This is mainly useful for myself to merge pull requests like https://github.com/bitcoin-core/qa-assets/pull/4
I thought it wouldn't hurt to share the code.
Also remove the --disable-ccache from the docs to speed up builds when developing fuzzers.
This is mainly useful for myself to merge pull requests like https://github.com/bitcoin-core/qa-assets/pull/4
I thought it wouldn't hurt to share the code.
Also remove the --disable-ccache from the docs to speed up builds when developing fuzzers.
Concept ACK
Nice to have!
re-run ci
The coverage statistics are not stable across clang versions
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--174a7506f384e20aa4161008e828411d-->
Reviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.
135 | @@ -121,6 +136,22 @@ def main(): 136 | ) 137 | 138 | 139 | +def merge_inputs(*, corpus, test_list, build_dir, merge_dir): 140 | + logging.info("Merge the inputs in the passed dir into the seed_dir. Passed dir {}".format(merge_dir))
This looks like leftover debugging.
Merging is currently a manual operation, so I like the extra verbosity. Happy to remove if you have strong feelings about this.
If it's intentional, no problem; It just seemed written strangely as a log message, so I wanted to make sure it wasn't a leftover.
Concept ACK