From 5792846506560242438332ce87086135d8644270 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Fri, 16 Oct 2015 22:47:20 +0000 Subject: [PATCH] [libFuzzer] reduce the size of artifacts printed on the screen git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250565 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Fuzzer/FuzzerLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Fuzzer/FuzzerLoop.cpp b/lib/Fuzzer/FuzzerLoop.cpp index 9b238cb05b1..93054298bc4 100644 --- a/lib/Fuzzer/FuzzerLoop.cpp +++ b/lib/Fuzzer/FuzzerLoop.cpp @@ -14,7 +14,7 @@ #include namespace fuzzer { -static const size_t kMaxUnitSizeToPrint = 4096; +static const size_t kMaxUnitSizeToPrint = 256; // Only one Fuzzer per process. static Fuzzer *F; -- 2.34.1