Call log_init() and set debug but clear verbose afterwards with
log_setverbose(0) still the fuzzer is very verbose.
OK millert@ some time ago
-/* $OpenBSD: test_parser_fuzz.c,v 1.5 2021/12/13 16:56:49 deraadt Exp $ */
+/* $OpenBSD: test_parser_fuzz.c,v 1.6 2022/02/22 13:47:21 claudio Exp $ */
/*
* Fuzz tests for payload parsing
*
#include <event.h>
#include <imsg.h>
#include <string.h>
+#include <syslog.h>
#include "iked.h"
#include "ikev2.h"
struct iked_message msg;
struct ibuf *data;
-#if 0
- log_init(3);
-#endif
+ log_init(1, LOG_DAEMON);
+ log_setverbose(0);
TEST_START("fuzz generic header");
ASSERT_PTR_NE(data = ibuf_new(cookies, sizeof(cookies)), NULL);