diff options
author | fanquake <fanquake@gmail.com> | 2022-09-30 17:55:10 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-10-04 21:12:50 +0100 |
commit | eb155692804b4278f6638c74273c1d9d35cd6ab7 (patch) | |
tree | e18e690e8004ef999269ce350b44accf73d520c5 /src/Makefile.test_fuzz.include | |
parent | d919e8d5742a98d7f2b957b142003166ba178d9e (diff) |
fuzz: add util/mempool/h.cpp
Moving the mempool code (Boost) out of util.h, results in a ~10% speedup
(for me) when compiling the fuzz tests.
Diffstat (limited to 'src/Makefile.test_fuzz.include')
-rw-r--r-- | src/Makefile.test_fuzz.include | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.test_fuzz.include b/src/Makefile.test_fuzz.include index 11b5c12062..b35d713d57 100644 --- a/src/Makefile.test_fuzz.include +++ b/src/Makefile.test_fuzz.include @@ -10,12 +10,13 @@ EXTRA_LIBRARIES += \ TEST_FUZZ_H = \ test/fuzz/fuzz.h \ test/fuzz/FuzzedDataProvider.h \ - test/fuzz/mempool_utils.h \ - test/fuzz/util.h + test/fuzz/util.h \ + test/fuzz/util/mempool.h libtest_fuzz_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BOOST_CPPFLAGS) libtest_fuzz_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) libtest_fuzz_a_SOURCES = \ test/fuzz/fuzz.cpp \ test/fuzz/util.cpp \ + test/fuzz/util/mempool.cpp \ $(TEST_FUZZ_H) |