diff options
author | Marek Kurdej <marek@quasardb.net> | 2019-10-24 12:04:12 +0200 |
---|---|---|
committer | Marek Kurdej <marek@quasardb.net> | 2019-10-24 12:04:12 +0200 |
commit | 73cebfe4128cb12dba0c948263488e4c9e5d2186 (patch) | |
tree | 6a9d5420fc60b07d0855875064b0a46d8e0f1220 /llvm/docs/LibFuzzer.rst | |
parent | bfa3f0c316655d0140abb4e90f82242a7c2b4ea4 (diff) | |
download | bcm5719-llvm-73cebfe4128cb12dba0c948263488e4c9e5d2186.tar.gz bcm5719-llvm-73cebfe4128cb12dba0c948263488e4c9e5d2186.zip |
[libFuzzer] docs: update note to include REDUCE event.
Diffstat (limited to 'llvm/docs/LibFuzzer.rst')
-rw-r--r-- | llvm/docs/LibFuzzer.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index e38489014e6..9ab013e721e 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -350,7 +350,7 @@ Output During operation the fuzzer prints information to ``stderr``, for example:: INFO: Seed: 1523017872 - INFO: Loaded 1 modules (16 guards): [0x744e60, 0x744ea0), + INFO: Loaded 1 modules (16 guards): [0x744e60, 0x744ea0), INFO: -max_len is not provided, using 64 INFO: A corpus is not provided, starting from an empty corpus #0 READ units: 1 @@ -409,8 +409,8 @@ Each output line also reports the following statistics (when non-zero): ``rss:`` Current memory consumption. -For ``NEW`` events, the output line also includes information about the mutation -operation that produced the new input: +For ``NEW`` and ``REDUCE`` events, the output line also includes information +about the mutation operation that produced the new input: ``L:`` Size of the new input in bytes. @@ -449,7 +449,7 @@ A simple function that does something interesting if it receives the input You should get an error pretty quickly:: INFO: Seed: 1523017872 - INFO: Loaded 1 modules (16 guards): [0x744e60, 0x744ea0), + INFO: Loaded 1 modules (16 guards): [0x744e60, 0x744ea0), INFO: -max_len is not provided, using 64 INFO: A corpus is not provided, starting from an empty corpus #0 READ units: 1 |