From 2a9975f77b21de608654912d8a03dbf1a39ebea7 Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Wed, 23 May 2018 18:22:32 -0700 Subject: [PATCH] Increase the maximum file size --- tests/fuzz/regression_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzz/regression_driver.c b/tests/fuzz/regression_driver.c index 2b714d29..1553d436 100644 --- a/tests/fuzz/regression_driver.c +++ b/tests/fuzz/regression_driver.c @@ -16,7 +16,7 @@ #include int main(int argc, char const **argv) { - size_t const kMaxFileSize = (size_t)1 << 20; + size_t const kMaxFileSize = (size_t)1 << 27; int const kFollowLinks = 1; char *fileNamesBuf = NULL; char const **files = argv + 1;