aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/client_config/uri_fuzzer_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/client_config/uri_fuzzer_test.c')
-rw-r--r--test/core/client_config/uri_fuzzer_test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/client_config/uri_fuzzer_test.c b/test/core/client_config/uri_fuzzer_test.c
index eb976fc9f5..f297140559 100644
--- a/test/core/client_config/uri_fuzzer_test.c
+++ b/test/core/client_config/uri_fuzzer_test.c
@@ -31,6 +31,7 @@
*
*/
+#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -38,6 +39,9 @@
#include "src/core/ext/client_config/uri_parser.h"
+bool squelch = true;
+bool leak_check = true;
+
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
char *s = gpr_malloc(size + 1);
memcpy(s, data, size);