aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-01-08 14:00:14 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-01-08 14:00:17 +0100
commit1e078f17b5dc94fae329b38057512994532a32de (patch)
tree97a51c99790119c5243931c9354ac560d5ef5095 /src
parent5082324225bf9b7f59a6a7efe3d1225fcacbc627 (diff)
parentfa44417fcb41fc228d9337e9eba4977a495de692 (diff)
Merge #20882: fuzz: Add missing muhash registration
fa44417fcb41fc228d9337e9eba4977a495de692 fuzz: Add missing muhash registration (MarcoFalke) Pull request description: otherwise it is not possible to run the target ACKs for top commit: laanwj: Code review ACK fa44417fcb41fc228d9337e9eba4977a495de692 Tree-SHA512: b6495b84890a778d3569deddfc5703d1bed95d7d5c1eb0766fd5bd9afe86a3a0ccf4726aa16cba4a5fd182d23bfb7e815f3af4eb635915397c90805585b5699e
Diffstat (limited to 'src')
-rw-r--r--src/test/fuzz/muhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/muhash.cpp b/src/test/fuzz/muhash.cpp
index 87359c9d39..8f843ca773 100644
--- a/src/test/fuzz/muhash.cpp
+++ b/src/test/fuzz/muhash.cpp
@@ -9,7 +9,7 @@
#include <vector>
-void test_one_input(const std::vector<uint8_t>& buffer)
+FUZZ_TARGET(muhash)
{
FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
std::vector<uint8_t> data = ConsumeRandomLengthByteVector(fuzzed_data_provider);