mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Disable output of Reporter messages to stderr in fuzz targets
This commit is contained in:
parent
6d0599c537
commit
7d98d816d8
3 changed files with 8 additions and 1 deletions
4
CHANGES
4
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)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
3.2.0-dev.554
|
||||
3.2.0-dev.555
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue