From: Kostya Serebryany Date: Fri, 16 Oct 2015 22:47:20 +0000 (+0000) Subject: [libFuzzer] reduce the size of artifacts printed on the screen X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=5792846506560242438332ce87086135d8644270 [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 --- 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;