From 9ba75ee1d71c41ca08dd45eaafacd2bd94303c00 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 5 Jan 2017 14:19:10 +0100 Subject: executor: increase coverage size from 16K to 64K PCs On some KVM syscalls soverage reaches 36K+ PCs. --- executor/executor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor') 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; -- cgit mrf-deployment