1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[libFuzzer] better document the -merge=1 flag, part 2

llvm-svn: 268958
This commit is contained in:
Kostya Serebryany 2016-05-09 19:23:28 +00:00
parent bd6b8a3638
commit 0611ca6f4a

View File

@ -81,6 +81,13 @@ is to use the `-merge=1` flag:
mkdir NEW_CORPUS_DIR # Store minimized corpus here.
./my-fuzzer -merge=1 NEW_CORPUS_DIR FULL_CORPUS_DIR
You may use the same flag to add more interesting items to an existing corpus.
Only the inputs that trigger new coverage will be added to the first corpus.
.. code-block:: console
./my-fuzzer -merge=1 CURRNT_CORPUS_DIR NEW_POTENTIALLY_INTERESTING_INPUTS_DIR
Getting Started
===============