[libFuzzer] reduce the size of artifacts printed on the screen
authorKostya Serebryany <kcc@google.com>
Fri, 16 Oct 2015 22:47:20 +0000 (22:47 +0000)
committerKostya Serebryany <kcc@google.com>
Fri, 16 Oct 2015 22:47:20 +0000 (22:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250565 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Fuzzer/FuzzerLoop.cpp

index 9b238cb05b143e2a290b4bba84b2b0897521af53..93054298bc401a30cca6db76759ce15c026ef15e 100644 (file)
@@ -14,7 +14,7 @@
 #include <algorithm>
 
 namespace fuzzer {
-static const size_t kMaxUnitSizeToPrint = 4096;
+static const size_t kMaxUnitSizeToPrint = 256;
 
 // Only one Fuzzer per process.
 static Fuzzer *F;