aboutsummaryrefslogtreecommitdiffstats
path: root/executor/executor_runner.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-06-27 12:01:58 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-07-02 15:07:08 +0000
commit07dedd50ee8834dbca4da7667e69e72b7d0565b9 (patch)
tree44925ee15f9fad9ad0641435fd459d25375c811d /executor/executor_runner.h
parent6a2ff1acbd95b320444a729d9d281835be88ec66 (diff)
pkg/fuzzer: remove signal rotation
Signal rotation is intended to make the fuzzer re-discover flaky coverage in non flaky way. However, taking into accout that we get effectively the same effect after each manager restart, and that the fuzzer is overloaded with triage/smash jobs, it does not look to be worth it.
Diffstat (limited to 'executor/executor_runner.h')
-rw-r--r--executor/executor_runner.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/executor/executor_runner.h b/executor/executor_runner.h
index 86ce1819a..992227787 100644
--- a/executor/executor_runner.h
+++ b/executor/executor_runner.h
@@ -636,13 +636,11 @@ private:
void Handle(const rpc::SignalUpdateRawT& msg)
{
- debug("recv signal update: new=%zu drop=%zu\n", msg.new_max.size(), msg.drop_max.size());
+ debug("recv signal update: new=%zu\n", msg.new_max.size());
if (!max_signal_)
fail("signal update when no signal filter installed");
for (auto pc : msg.new_max)
max_signal_->Insert(pc);
- for (auto pc : msg.drop_max)
- max_signal_->Remove(pc);
}
void Handle(const rpc::CorpusTriagedRawT& msg)