aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/http
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-06-10 09:13:10 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-06-10 09:13:10 -0700
commit8da8511762f9b59d4715abf4861a4578e04530cd (patch)
tree3080c2cab3bee863f02ea8284eeead7bb550820d /test/core/http
parent698d3e91ff42db3fe640cc369e8edf85abc5343d (diff)
Expand corpus, make one-shot runners not self-check leaks (to give ASAN a chance)
Diffstat (limited to 'test/core/http')
-rw-r--r--test/core/http/fuzzer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/http/fuzzer.c b/test/core/http/fuzzer.c
index 7e4f4eb993..c3c634f281 100644
--- a/test/core/http/fuzzer.c
+++ b/test/core/http/fuzzer.c
@@ -31,6 +31,7 @@
*
*/
+#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -38,6 +39,9 @@
#include "src/core/lib/http/parser.h"
+bool squelch = true;
+bool leak_check = true;
+
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
grpc_http_parser parser;
grpc_http_parser_init(&parser);