aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.test_fuzz.include
diff options
context:
space:
mode:
authorbrunoerg <brunoely.gc@gmail.com>2023-10-04 16:28:06 -0300
committerbrunoerg <brunoely.gc@gmail.com>2023-11-20 15:57:50 -0300
commit2e1833ca1341ab4dc92508a59181aa6c7c38db88 (patch)
treee2ea48558b5412a8c1b153ca0a30d4853b505e98 /src/Makefile.test_fuzz.include
parentd752349029ec7a76f1fd440db2ec2e458d0f3c99 (diff)
downloadbitcoin-2e1833ca1341ab4dc92508a59181aa6c7c38db88.tar.xz
fuzz: move `MockedDescriptorConverter` to `fuzz/util`
Diffstat (limited to 'src/Makefile.test_fuzz.include')
-rw-r--r--src/Makefile.test_fuzz.include2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.test_fuzz.include b/src/Makefile.test_fuzz.include
index aa9c052750..b4337991e4 100644
--- a/src/Makefile.test_fuzz.include
+++ b/src/Makefile.test_fuzz.include
@@ -11,6 +11,7 @@ TEST_FUZZ_H = \
test/fuzz/fuzz.h \
test/fuzz/FuzzedDataProvider.h \
test/fuzz/util.h \
+ test/fuzz/util/descriptor.h \
test/fuzz/util/mempool.h \
test/fuzz/util/net.h
@@ -19,6 +20,7 @@ libtest_fuzz_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libtest_fuzz_a_SOURCES = \
test/fuzz/fuzz.cpp \
test/fuzz/util.cpp \
+ test/fuzz/util/descriptor.cpp \
test/fuzz/util/mempool.cpp \
test/fuzz/util/net.cpp \
$(TEST_FUZZ_H)