Skip to content

Commit

Permalink
FuzzTargetRunner: log coverage input directories on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
zgtm committed Jun 9, 2023
1 parent 10954df commit fc0cb5d
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,13 @@ public static int startLibFuzzer(List<String> args) {
// https://github.com/llvm/llvm-project/blob/da3623de2411dd931913eb510e94fe846c929c24/compiler-rt/lib/fuzzer/FuzzerFlags.def#L19
args.add("-len_control=100");
}

for (String arg : args.subList(1, args.size())) {
if (!arg.startsWith("-")) {
Log.info("using inputs from: " + arg);
}
}

if (!IS_ANDROID) {
SignalHandler.initialize();
}
Expand Down

0 comments on commit fc0cb5d

Please sign in to comment.