mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 11:13:23 -03:00
fuzz: Remove addrdb fuzz target
This commit is contained in:
parent
b3a2b8c29f
commit
fa18553d38
2 changed files with 0 additions and 24 deletions
|
@ -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
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue