aboutsummaryrefslogtreecommitdiffstats
path: root/executor/executor.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-01-05 14:19:10 +0100
committerDmitry Vyukov <dvyukov@google.com>2017-01-09 20:20:48 +0100
commit9ba75ee1d71c41ca08dd45eaafacd2bd94303c00 (patch)
tree94fa52ae2505645e318656a743f37cd8d272eb08 /executor/executor.cc
parent94b38efc1d80ae2854d29af44c6d5918a2cb40cd (diff)
executor: increase coverage size from 16K to 64K PCs
On some KVM syscalls soverage reaches 36K+ PCs.
Diffstat (limited to 'executor/executor.cc')
-rw-r--r--executor/executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/executor.cc b/executor/executor.cc
index 4e957c80e..a6d45c432 100644
--- a/executor/executor.cc
+++ b/executor/executor.cc
@@ -45,7 +45,7 @@ const int kMaxOutput = 16 << 20;
const int kMaxArgs = 9;
const int kMaxThreads = 16;
const int kMaxCommands = 4 << 10;
-const int kCoverSize = 16 << 10;
+const int kCoverSize = 64 << 10;
const uint64_t instr_eof = -1;
const uint64_t instr_copyin = -2;