aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-09-01 09:56:06 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-09-01 09:43:06 +0200
commitfa18553d382a7d8c447cd6698b36e293fb7ecf1f (patch)
treef66b3d1b2532b9af5594f8ee7cc47c551af76659 /src
parentb3a2b8c29fda5d924726d3087535bd34af7012b6 (diff)
downloadbitcoin-fa18553d382a7d8c447cd6698b36e293fb7ecf1f.tar.xz
fuzz: Remove addrdb fuzz target
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.test.include1
-rw-r--r--src/test/fuzz/addrdb.cpp23
2 files changed, 0 insertions, 24 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include
index 40d44aaa2e..6af5ead443 100644
--- a/src/Makefile.test.include
+++ b/src/Makefile.test.include
@@ -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_SOURCES = \
test/fuzz/addition_overflow.cpp \
- test/fuzz/addrdb.cpp \
test/fuzz/addrman.cpp \
test/fuzz/asmap.cpp \
test/fuzz/asmap_direct.cpp \
diff --git a/src/test/fuzz/addrdb.cpp b/src/test/fuzz/addrdb.cpp
deleted file mode 100644
index 44df3576c4..0000000000
--- a/src/test/fuzz/addrdb.cpp
+++ /dev/null
@@ -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
-}