Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions centipede/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -984,21 +984,6 @@ cc_library(
# This has no dependency and only uses string, pair and vector.
)

cc_library(
name = "dispatcher",
srcs = ["dispatcher.cc"],
hdrs = ["dispatcher.h"],
deps = [
":execution_metadata",
":mutation_data",
":runner_request",
":runner_result",
":shared_memory_blob_sequence",
"@abseil-cpp//absl/base:nullability",
"@com_google_fuzztest//common:defs",
],
)

cc_library(
name = "engine_worker",
srcs = [
Expand Down
5 changes: 2 additions & 3 deletions centipede/centipede_callbacks.cc
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,8 @@ int CentipedeCallbacks::ExecuteCentipedeSancovBinaryWithShmem(
ReadFromLocalFile(failure_signature_path_,
batch_result.failure_signature());
} else {
// TODO(xinhaoyuan): Refactor runner to use dispatcher so this branch
// can be removed. Crash deduplication assumes that the failure
// signature contains no dashes and that it can be used as a file name.
// Crash deduplication assumes that the failure signature contains no
// dashes and that it can be used as a file name.
batch_result.failure_signature() =
Hash(batch_result.failure_description());
}
Expand Down
Loading
Loading