diff options
author | Pieter Wuille <pieter@wuille.net> | 2024-05-08 20:52:56 -0400 |
---|---|---|
committer | Pieter Wuille <pieter@wuille.net> | 2024-07-25 10:16:37 -0400 |
commit | 58f7e01db4bad6d958d44f2bcdfd9df9e22931a4 (patch) | |
tree | 92ca1cfe8b5d48f6e2a256bf74346cc61384d379 /src/Makefile.test_util.include | |
parent | a6e07e769a1af652a14e533f6d3558ccdefb1de5 (diff) |
tests: framework for testing DepGraph class
This introduces a bespoke fuzzing-focused serialization format for DepGraphs,
and then tests that this format can represent any graph, roundtrips, and then
uses that to test the correctness of DepGraph itself.
This forms the basis for future fuzz tests that need to work with interesting
graphs.
Diffstat (limited to 'src/Makefile.test_util.include')
-rw-r--r-- | src/Makefile.test_util.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.test_util.include b/src/Makefile.test_util.include index 960eb078c8..0c0e849fba 100644 --- a/src/Makefile.test_util.include +++ b/src/Makefile.test_util.include @@ -10,6 +10,7 @@ EXTRA_LIBRARIES += \ TEST_UTIL_H = \ test/util/blockfilter.h \ test/util/chainstate.h \ + test/util/cluster_linearize.h \ test/util/coins.h \ test/util/index.h \ test/util/json.h \ |