diff options
| author | practicalswift <[email protected]> | 2020-05-16 18:17:25 +0000 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2020-05-30 10:37:01 +0000 |
| commit | 43fb8f0ca331a7f79f0d287817da7f4b894bdbfa (patch) | |
| tree | af2e71abd3ac74bf630b52c1cd1a20d325f97428 /src/Makefile.test.include | |
| parent | tests: Fill fuzzing coverage gaps for functions in script/script.h, script/sc... (diff) | |
| download | discoin-43fb8f0ca331a7f79f0d287817da7f4b894bdbfa.tar.xz discoin-43fb8f0ca331a7f79f0d287817da7f4b894bdbfa.zip | |
tests: Add fuzzing harness for functions in script/bitcoinconsensus.h
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 2480cdadb..6ae32c7e7 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -110,6 +110,7 @@ FUZZ_TARGETS = \ test/fuzz/rbf \ test/fuzz/rolling_bloom_filter \ test/fuzz/script \ + test/fuzz/script_bitcoin_consensus \ test/fuzz/script_deserialize \ test/fuzz/script_flags \ test/fuzz/script_ops \ @@ -941,6 +942,12 @@ test_fuzz_script_LDADD = $(FUZZ_SUITE_LD_COMMON) test_fuzz_script_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) test_fuzz_script_SOURCES = test/fuzz/script.cpp +test_fuzz_script_bitcoin_consensus_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) +test_fuzz_script_bitcoin_consensus_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) +test_fuzz_script_bitcoin_consensus_LDADD = $(FUZZ_SUITE_LD_COMMON) +test_fuzz_script_bitcoin_consensus_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) +test_fuzz_script_bitcoin_consensus_SOURCES = test/fuzz/script_bitcoin_consensus.cpp + test_fuzz_script_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DSCRIPT_DESERIALIZE=1 test_fuzz_script_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) test_fuzz_script_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON) |