[llvm] r356422 - [libFuzzer] document -len_control

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 18 15:20:47 PDT 2019


Author: kcc
Date: Mon Mar 18 15:20:47 2019
New Revision: 356422

URL: http://llvm.org/viewvc/llvm-project?rev=356422&view=rev
Log:
[libFuzzer] document -len_control

Modified:
    llvm/trunk/docs/LibFuzzer.rst

Modified: llvm/trunk/docs/LibFuzzer.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LibFuzzer.rst?rev=356422&r1=356421&r2=356422&view=diff
==============================================================================
--- llvm/trunk/docs/LibFuzzer.rst (original)
+++ llvm/trunk/docs/LibFuzzer.rst Mon Mar 18 15:20:47 2019
@@ -258,6 +258,10 @@ The most important command line options
 ``-max_len``
   Maximum length of a test input. If 0 (the default), libFuzzer tries to guess
   a good value based on the corpus (and reports it).
+``len_control``
+  Try generating small inputs first, then try larger inputs over time.
+  Specifies the rate at which the length limit is increased (smaller == faster).
+  Default is 100. If 0, immediately try inputs with size up to max_len.
 ``-timeout``
   Timeout in seconds, default 1200. If an input takes longer than this timeout,
   the process is treated as a failure case.




More information about the llvm-commits mailing list