diff options
author | Ava Chow <github@achow101.com> | 2024-08-12 16:06:38 -0400 |
---|---|---|
committer | Ava Chow <github@achow101.com> | 2024-08-12 16:06:38 -0400 |
commit | ee57737bd66017f4e5a25604eacc8c35143b29ce (patch) | |
tree | 4d6193e3c859da1c5a1d91c6b17955b4731e8217 /src/Makefile.test.include | |
parent | 5b0059fdf9f86d49fae47e104493b4f70613274b (diff) | |
parent | 86b38529d5014612c3e7bb59fdc4dad3bff2aa64 (diff) |
Merge bitcoin/bitcoin#28209: fuzz: a target for the block index database
86b38529d5014612c3e7bb59fdc4dad3bff2aa64 qa: a fuzz target for the block index database (Antoine Poinsot)
Pull request description:
This introduces a small fuzz target for `CBlockTreeDB` which asserts a few invariants by using an in-memory LevelDb.
ACKs for top commit:
achow101:
ACK 86b38529d5014612c3e7bb59fdc4dad3bff2aa64
TheCharlatan:
Re-ACK 86b38529d5014612c3e7bb59fdc4dad3bff2aa64
maflcko:
review ACK 86b38529d5014612c3e7bb59fdc4dad3bff2aa64 🥒
brunoerg:
utACK 86b38529d5014612c3e7bb59fdc4dad3bff2aa64
Tree-SHA512: ab75b4ae1c7e0a4b15f8a6ceffdf509fbc79833e6ea073ecef68558d53b83663d1b30362aaa2d77c22b8890a572f5b1d4b1c5abbca483c8c8f9b1fb5b276a59a
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 3a6d56c9e1..c396cc2ebf 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -299,6 +299,7 @@ test_fuzz_fuzz_SOURCES = \ test/fuzz/bitset.cpp \ test/fuzz/block.cpp \ test/fuzz/block_header.cpp \ + test/fuzz/block_index.cpp \ test/fuzz/blockfilter.cpp \ test/fuzz/bloom_filter.cpp \ test/fuzz/buffered_file.cpp \ |