|
4 | 4 |
|
5 | 5 | FUZZ_TARGETS = \
|
6 | 6 | test/fuzz/addr_info_deserialize \
|
| 7 | + test/fuzz/addrdb \ |
7 | 8 | test/fuzz/address_deserialize \
|
8 | 9 | test/fuzz/addrman_deserialize \
|
9 | 10 | test/fuzz/asmap \
|
@@ -43,6 +44,7 @@ FUZZ_TARGETS = \
|
43 | 44 | test/fuzz/merkle_block_deserialize \
|
44 | 45 | test/fuzz/messageheader_deserialize \
|
45 | 46 | test/fuzz/multiplication_overflow \
|
| 47 | + test/fuzz/net_permissions \ |
46 | 48 | test/fuzz/netaddr_deserialize \
|
47 | 49 | test/fuzz/netaddress \
|
48 | 50 | test/fuzz/out_point_deserialize \
|
@@ -97,6 +99,7 @@ FUZZ_TARGETS = \
|
97 | 99 | test/fuzz/string \
|
98 | 100 | test/fuzz/strprintf \
|
99 | 101 | test/fuzz/sub_net_deserialize \
|
| 102 | + test/fuzz/timedata \ |
100 | 103 | test/fuzz/transaction \
|
101 | 104 | test/fuzz/tx_in \
|
102 | 105 | test/fuzz/tx_in_deserialize \
|
@@ -288,6 +291,12 @@ test_fuzz_addr_info_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
288 | 291 | test_fuzz_addr_info_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
289 | 292 | test_fuzz_addr_info_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
290 | 293 |
|
| 294 | +test_fuzz_addrdb_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) |
| 295 | +test_fuzz_addrdb_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) |
| 296 | +test_fuzz_addrdb_LDADD = $(FUZZ_SUITE_LD_COMMON) |
| 297 | +test_fuzz_addrdb_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) |
| 298 | +test_fuzz_addrdb_SOURCES = $(FUZZ_SUITE) test/fuzz/addrdb.cpp |
| 299 | + |
291 | 300 | test_fuzz_address_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DADDRESS_DESERIALIZE=1
|
292 | 301 | test_fuzz_address_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
293 | 302 | test_fuzz_address_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
@@ -522,6 +531,12 @@ test_fuzz_multiplication_overflow_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
522 | 531 | test_fuzz_multiplication_overflow_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
523 | 532 | test_fuzz_multiplication_overflow_SOURCES = $(FUZZ_SUITE) test/fuzz/multiplication_overflow.cpp
|
524 | 533 |
|
| 534 | +test_fuzz_net_permissions_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) |
| 535 | +test_fuzz_net_permissions_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) |
| 536 | +test_fuzz_net_permissions_LDADD = $(FUZZ_SUITE_LD_COMMON) |
| 537 | +test_fuzz_net_permissions_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) |
| 538 | +test_fuzz_net_permissions_SOURCES = $(FUZZ_SUITE) test/fuzz/net_permissions.cpp |
| 539 | + |
525 | 540 | test_fuzz_netaddr_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DNETADDR_DESERIALIZE=1
|
526 | 541 | test_fuzz_netaddr_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
527 | 542 | test_fuzz_netaddr_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
@@ -846,6 +861,12 @@ test_fuzz_sub_net_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
846 | 861 | test_fuzz_sub_net_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
847 | 862 | test_fuzz_sub_net_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
848 | 863 |
|
| 864 | +test_fuzz_timedata_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) |
| 865 | +test_fuzz_timedata_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) |
| 866 | +test_fuzz_timedata_LDADD = $(FUZZ_SUITE_LD_COMMON) |
| 867 | +test_fuzz_timedata_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) |
| 868 | +test_fuzz_timedata_SOURCES = $(FUZZ_SUITE) test/fuzz/timedata.cpp |
| 869 | + |
849 | 870 | test_fuzz_transaction_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
850 | 871 | test_fuzz_transaction_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
851 | 872 | test_fuzz_transaction_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
|
0 commit comments