[llvm] r250565 - [libFuzzer] reduce the size of artifacts printed on the screen
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 16 15:47:21 PDT 2015
Author: kcc
Date: Fri Oct 16 17:47:20 2015
New Revision: 250565
URL: http://llvm.org/viewvc/llvm-project?rev=250565&view=rev
Log:
[libFuzzer] reduce the size of artifacts printed on the screen
Modified:
llvm/trunk/lib/Fuzzer/FuzzerLoop.cpp
Modified: llvm/trunk/lib/Fuzzer/FuzzerLoop.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/FuzzerLoop.cpp?rev=250565&r1=250564&r2=250565&view=diff
==============================================================================
--- llvm/trunk/lib/Fuzzer/FuzzerLoop.cpp (original)
+++ llvm/trunk/lib/Fuzzer/FuzzerLoop.cpp Fri Oct 16 17:47:20 2015
@@ -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;
More information about the llvm-commits
mailing list