Skip to content

Commit 091741a

Browse files
authored
[libfuzzer] Clarify -max_len behavior on bigger files (llvm#123095)
1 parent 2a51a0d commit 091741a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

compiler-rt/lib/fuzzer/FuzzerFlags.def

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ FUZZER_FLAG_UNSIGNED(seed, 0, "Random seed. If 0, seed is generated.")
1414
FUZZER_FLAG_INT(runs, -1,
1515
"Number of individual test runs (-1 for infinite runs).")
1616
FUZZER_FLAG_INT(max_len, 0, "Maximum length of the test input. "
17-
"If 0, libFuzzer tries to guess a good value based on the corpus "
18-
"and reports it. ")
17+
"Contents of corpus files are going to be truncated to this value. "
18+
"If 0, libFuzzer tries to guess a good value based on the corpus "
19+
"and reports it.")
1920
FUZZER_FLAG_INT(len_control, 100, "Try generating small inputs first, "
2021
"then try larger inputs over time. Specifies the rate at which the length "
2122
"limit is increased (smaller == faster). If 0, immediately try inputs with "

0 commit comments

Comments
 (0)