mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
Merge bitcoin/bitcoin#22853: fuzz: Remove addrdb fuzz target
fa18553d38fuzz: Remove addrdb fuzz target (MarcoFalke) Pull request description: The target has several issues: * It is named incorrectly (`addrdb`, but it constructs a `CBanEntry`) * It doesn't do anything meaningful, other than consuming one integer and passing it to a constructor * It consumes CPU time that can be used for the other targets * It is redundant with the banman fuzz target Fix all by removing it. ACKs for top commit: amitiuttarwar: ACKfa18553d38, thanks for the cleanup Tree-SHA512: 3f8944d3f80913bf466c03062fed070e96073fb72d0938b2bc9a2586960c86879d6f251e16fd81cfeb4e6685ff9eef6bccb25cd3901b218a100c90f25a3c9240
This commit is contained in:
@@ -207,7 +207,6 @@ test_fuzz_fuzz_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
|||||||
test_fuzz_fuzz_LDFLAGS = $(FUZZ_SUITE_LDFLAGS_COMMON) $(RUNTIME_LDFLAGS)
|
test_fuzz_fuzz_LDFLAGS = $(FUZZ_SUITE_LDFLAGS_COMMON) $(RUNTIME_LDFLAGS)
|
||||||
test_fuzz_fuzz_SOURCES = \
|
test_fuzz_fuzz_SOURCES = \
|
||||||
test/fuzz/addition_overflow.cpp \
|
test/fuzz/addition_overflow.cpp \
|
||||||
test/fuzz/addrdb.cpp \
|
|
||||||
test/fuzz/addrman.cpp \
|
test/fuzz/addrman.cpp \
|
||||||
test/fuzz/asmap.cpp \
|
test/fuzz/asmap.cpp \
|
||||||
test/fuzz/asmap_direct.cpp \
|
test/fuzz/asmap_direct.cpp \
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
// Copyright (c) 2020 The Bitcoin Core developers
|
|
||||||
// Distributed under the MIT software license, see the accompanying
|
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
||||||
|
|
||||||
#include <addrdb.h>
|
|
||||||
#include <test/fuzz/FuzzedDataProvider.h>
|
|
||||||
#include <test/fuzz/fuzz.h>
|
|
||||||
#include <test/fuzz/util.h>
|
|
||||||
|
|
||||||
#include <cassert>
|
|
||||||
#include <cstdint>
|
|
||||||
#include <optional>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
FUZZ_TARGET(addrdb)
|
|
||||||
{
|
|
||||||
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
|
||||||
|
|
||||||
// The point of this code is to exercise all CBanEntry constructors.
|
|
||||||
const CBanEntry ban_entry{fuzzed_data_provider.ConsumeIntegral<int64_t>()};
|
|
||||||
(void)ban_entry; // currently unused
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user