drcov-merge is a utility to merge several DrCov coverage files into a single
trace. It is notably used as part of the
afl-cov-fast project.
Note: Execution order of basic blocks will not be preserved after merging.
To build drcov-merge:
$ cargo buildTo install it and make the command accessible:
$ cargo install --path .$ drcov-merge --help
Usage: drcov-merge --output <OUTPUT> <INPUT>...
Arguments:
<INPUT>... Input glob patterns matching drcov files
Options:
-o, --output <OUTPUT> Output merged drcov file
-h, --help Print help
-V, --version Print versionExample:
$ drcov-merge full.drcov.trace 'run*.drcov.trace'This project is licensed under the GPLv3 License. See the LICENSE file for details.