aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/json
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-08-02 23:15:44 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-08-02 23:15:44 +0200
commit18c71117b0d90f5e7d12a5473791eb5054a34b9f (patch)
tree08df5dc7355bc26695ce956aa91f9ffc985903c1 /test/core/json
parentacbd8675a283a51a409991ac1393294c9af726e7 (diff)
parent5c3877e70f97e12242326fe628a2ced2d97995be (diff)
Merge branch 'master' of https://github.com/grpc/grpc into what-the-fuzz
Diffstat (limited to 'test/core/json')
-rw-r--r--test/core/json/fuzzer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/json/fuzzer.c b/test/core/json/fuzzer.c
index e94b41ca99..26c5c25caf 100644
--- a/test/core/json/fuzzer.c
+++ b/test/core/json/fuzzer.c
@@ -31,6 +31,7 @@
*
*/
+#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -40,6 +41,9 @@
#include "src/core/lib/json/json.h"
#include "test/core/util/memory_counters.h"
+bool squelch = true;
+bool leak_check = true;
+
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
char *s;
struct grpc_memory_counters counters;