[PATCH] D87476: [libFuzzer] Enable entropic by default.

Max Moroz via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 10 11:57:57 PDT 2020


Dor1s added inline comments.


================
Comment at: compiler-rt/lib/fuzzer/FuzzerDriver.cpp:771
+  if (!Options.FocusFunction.empty())
+    Options.Entropic = false; // FocusFunction overrides entropic scheduling.
+  if (Options.Entropic)
----------------
maybe we should preserve an explicit error in case both focus function and entropic are used? Otherwise it's not obvious and might be even tricky to realize without checking libFuzzer's source code.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D87476/new/

https://reviews.llvm.org/D87476



More information about the llvm-commits mailing list