Lines Matching +full:runs +full:- +full:on

1 //===- FuzzerFlags.def - Run-time flags -------------------------*- C++ -* ===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
14 FUZZER_FLAG_INT(runs, -1,
15 "Number of individual test runs (-1 for infinite runs).")
18 "If 0, libFuzzer tries to guess a good value based on the corpus "
24 FUZZER_FLAG_STRING(seed_inputs, "A comma-separated list of input files "
26 "the name of a file containing the comma-separated list.")
35 "depending on the input mutation scheduling policy. With this flag, all "
52 "If one unit runs more than this number of seconds the process will abort.")
62 FUZZER_FLAG_INT(fork_corpus_groups, 0, "For fork mode, enable the corpus-group "
64 "and each sub-process will randomly select seeds from different "
65 "groups as the sub-corpus.")
69 FUZZER_FLAG_INT(merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
70 "merged into the 1-st corpus. Only interesting units will be taken. "
72 FUZZER_FLAG_INT(set_cover_merge, 0, "If 1, the 2-nd, 3-rd, etc corpora will be "
73 "merged into the 1-st corpus. Same as the 'merge' flag, but uses the "
86 " crash input. Use with -runs=N or -max_total_time=N to limit "
88 " Use with -exact_artifact_path to specify the output."
94 " Use with -exact_artifact_path to specify the output."
97 FUZZER_FLAG_STRING(features_dir, "internal flag. Used to dump feature sets on disk."
117 " with stdout/stderr redirected to fuzz-JOB.log.")
133 "Write the single artifact on failure (crash, timeout) "
134 "as $(exact_artifact_path). This overrides -artifact_prefix "
142 "If 1, print statistics on corpus elements at exit.")
168 "purge_allocator_interval=-1 to disable this functionality.")
171 FUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon "
173 FUZZER_FLAG_INT(malloc_limit_mb, 0, "If non-zero, the fuzzer will exit "
177 " from the given source location. Example: -exit_on_src_pos=foo.cc:123. "
186 "Fuzzing will focus on inputs that trigger calls to this function. "
187 "If -focus_function=auto and -data_flow_trace is used, libFuzzer "
188 "will choose the focus functions automatically. Disables -entropic when "
196 "Top-X least abundant features (union features that are considered as "
199 "the Entropic power schedule gets scaled based on the input execution "
202 "non-zero random seed is given.")