diff --git a/CHANGES b/CHANGES index 3f87234127..f1e089d93b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +3.2.0-dev.555 | 2020-05-20 11:19:08 -0700 + + * Disable output of Reporter messages to stderr in fuzz targets (Jon Siwek, Corelight) + 3.2.0-dev.554 | 2020-05-20 10:56:46 -0700 * Improve standalone fuzz driver timing output (Jon Siwek, Corelight) diff --git a/VERSION b/VERSION index ee2820da49..18a3b72a3c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.2.0-dev.554 +3.2.0-dev.555 diff --git a/src/fuzzers/fuzzer-setup.h b/src/fuzzers/fuzzer-setup.h index e692ddd3c4..976aa9126e 100644 --- a/src/fuzzers/fuzzer-setup.h +++ b/src/fuzzers/fuzzer-setup.h @@ -32,6 +32,9 @@ extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv) options.scripts_to_load.emplace_back("local.zeek"); options.script_options_to_set.emplace_back("Site::local_nets={10.0.0.0/8}"); options.script_options_to_set.emplace_back("Log::default_writer=Log::WRITER_NONE"); + options.script_options_to_set.emplace_back("Reporter::info_to_stderr=F"); + options.script_options_to_set.emplace_back("Reporter::warnings_to_stderr=F"); + options.script_options_to_set.emplace_back("Reporter::errors_to_stderr=F"); options.deterministic_mode = true; options.ignore_checksums = true; options.abort_on_scripting_errors = true;